Skip to content

Commit 499a21b

Browse files
author
Aleksander Chlebowski
committed
fix check note on line lengths
1 parent 985fe74 commit 499a21b

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

R/tm_data_table.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
#' data = data,
4141
#' modules = modules(
4242
#' tm_data_table(
43-
#' variables_selected = list(iris = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species")),
43+
#' variables_selected = list(
44+
#' iris = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species")
45+
#' ),
4446
#' dt_args = list(caption = "ADSL Table Caption")
4547
#' )
4648
#' )

R/tm_g_scatterplot.R

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@
7373
#' dataname = "CO2",
7474
#' select = select_spec(
7575
#' label = "Select variable:",
76-
#' choices = variable_choices(data[["CO2"]], c("Plant", "Type", "Treatment", "conc", "uptake")),
76+
#' choices = variable_choices(
77+
#' data[["CO2"]],
78+
#' c("Plant", "Type", "Treatment", "conc", "uptake")
79+
#' ),
7780
#' selected = NULL,
7881
#' multiple = FALSE,
7982
#' fixed = FALSE
@@ -160,7 +163,10 @@
160163
#' dataname = "ADSL",
161164
#' select = select_spec(
162165
#' label = "Select variable:",
163-
#' choices = variable_choices(data[["ADSL"]], c("AGE", "BMRKR1", "BMRKR2", "RACE", "REGION1")),
166+
#' choices = variable_choices(
167+
#' data[["ADSL"]],
168+
#' c("AGE", "BMRKR1", "BMRKR2", "RACE", "REGION1")
169+
#' ),
164170
#' selected = NULL,
165171
#' multiple = FALSE,
166172
#' fixed = FALSE

man/tm_data_table.Rd

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/tm_g_scatterplot.Rd

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)