Skip to content

Commit 7e89058

Browse files
committed
unify decorators and transformators default values
1 parent a00f139 commit 7e89058

28 files changed

+109
-115
lines changed

R/tm_a_pca.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ tm_a_pca <- function(label = "Principal Component Analysis",
134134
pre_output = NULL,
135135
post_output = NULL,
136136
transformators = list(),
137-
decorators = NULL) {
137+
decorators = list()) {
138138
message("Initializing tm_a_pca")
139139

140140
# Normalize the parameters

R/tm_a_regression.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ tm_a_regression <- function(label = "Regression Analysis",
158158
default_outlier_label = "USUBJID",
159159
label_segment_threshold = c(0.5, 0, 10),
160160
transformators = list(),
161-
decorators = NULL) {
161+
decorators = list()) {
162162
message("Initializing tm_a_regression")
163163

164164
# Normalize the parameters

R/tm_g_association.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ tm_g_association <- function(label = "Association",
139139
post_output = NULL,
140140
ggplot2_args = teal.widgets::ggplot2_args(),
141141
transformators = list(),
142-
decorators = NULL) {
142+
decorators = list()) {
143143
message("Initializing tm_g_association")
144144

145145
# Normalize the parameters

R/tm_g_bivariate.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ tm_g_bivariate <- function(label = "Bivariate Plots",
196196
pre_output = NULL,
197197
post_output = NULL,
198198
transformators = list(),
199-
decorators = NULL) {
199+
decorators = list()) {
200200
message("Initializing tm_g_bivariate")
201201

202202
# Normalize the parameters

R/tm_g_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ tm_g_distribution <- function(label = "Distribution Module",
151151
pre_output = NULL,
152152
post_output = NULL,
153153
transformators = list(),
154-
decorators = NULL) {
154+
decorators = list()) {
155155
message("Initializing tm_g_distribution")
156156

157157
# Normalize the parameters

R/tm_g_response.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ tm_g_response <- function(label = "Response Plot",
157157
pre_output = NULL,
158158
post_output = NULL,
159159
transformators = list(),
160-
decorators = NULL) {
160+
decorators = list()) {
161161
message("Initializing tm_g_response")
162162

163163
# Normalize the parameters

R/tm_g_scatterplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ tm_g_scatterplot <- function(label = "Scatterplot",
240240
table_dec = 4,
241241
ggplot2_args = teal.widgets::ggplot2_args(),
242242
transformators = list(),
243-
decorators = NULL) {
243+
decorators = list()) {
244244
message("Initializing tm_g_scatterplot")
245245

246246
# Normalize the parameters

R/tm_g_scatterplotmatrix.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ tm_g_scatterplotmatrix <- function(label = "Scatterplot Matrix",
178178
pre_output = NULL,
179179
post_output = NULL,
180180
transformators = list(),
181-
decorators = NULL) {
181+
decorators = list()) {
182182
message("Initializing tm_g_scatterplotmatrix")
183183

184184
# Normalize the parameters

R/tm_missing_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ tm_missing_data <- function(label = "Missing data",
118118
pre_output = NULL,
119119
post_output = NULL,
120120
transformators = list(),
121-
decorators = NULL) {
121+
decorators = list()) {
122122
message("Initializing tm_missing_data")
123123

124124
# Normalize the parameters

R/tm_outliers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ tm_outliers <- function(label = "Outliers Module",
158158
pre_output = NULL,
159159
post_output = NULL,
160160
transformators = list(),
161-
decorators = NULL) {
161+
decorators = list()) {
162162
message("Initializing tm_outliers")
163163

164164
# Normalize the parameters

0 commit comments

Comments
 (0)