Skip to content

Commit 8239c69

Browse files
[skip style] [skip vbump] Restyle files
1 parent a8c14fb commit 8239c69

File tree

7 files changed

+25
-13
lines changed

7 files changed

+25
-13
lines changed

R/tm_a_regression.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,10 @@ srv_a_regression <- function(id,
448448
)
449449
})
450450

451-
qenv <- teal.code::eval_code(data(),
452-
"library('ggplot2');")
451+
qenv <- teal.code::eval_code(
452+
data(),
453+
"library('ggplot2');"
454+
)
453455

454456
anl_merged_q <- reactive({
455457
req(anl_merged_input())

R/tm_data_table.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,10 @@ srv_data_table <- function(id,
318318
df <- data()[[dataname]]
319319

320320
teal::validate_has_data(df, min_nrow = 1L, msg = paste("data", dataname, "is empty"))
321-
qenv <- teal.code::eval_code(data(),
322-
'library("ggplot2");library("dplyr");library("DT")')
321+
qenv <- teal.code::eval_code(
322+
data(),
323+
'library("ggplot2");library("dplyr");library("DT")'
324+
)
323325
teal.code::eval_code(
324326
qenv,
325327
substitute(

R/tm_g_association.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,10 @@ srv_tm_g_association <- function(id,
330330
selector_list = selector_list
331331
)
332332

333-
qenv <- teal.code::eval_code(data(),
334-
'library("ggplot2");library("dplyr")')
333+
qenv <- teal.code::eval_code(
334+
data(),
335+
'library("ggplot2");library("dplyr")'
336+
)
335337
anl_merged_q <- reactive({
336338
req(anl_merged_input())
337339
qenv %>% teal.code::eval_code(as.expression(anl_merged_input()$expr))

R/tm_g_bivariate.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,8 +535,10 @@ srv_g_bivariate <- function(id,
535535
selector_list = selector_list,
536536
datasets = data
537537
)
538-
qenv <- teal.code::eval_code(data(),
539-
'library("ggplot2");library("dplyr")')
538+
qenv <- teal.code::eval_code(
539+
data(),
540+
'library("ggplot2");library("dplyr")'
541+
)
540542

541543
anl_merged_q <- reactive({
542544
req(anl_merged_input())

R/tm_g_distribution.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,10 @@ srv_distribution <- function(id,
542542
datasets = data
543543
)
544544

545-
qenv <- teal.code::eval_code(data(),
546-
'library("ggplot2");library("forcats");library("dplyr")')
545+
qenv <- teal.code::eval_code(
546+
data(),
547+
'library("ggplot2");library("forcats");library("dplyr")'
548+
)
547549

548550
anl_merged_q <- reactive({
549551
req(anl_merged_input())

R/tm_g_response.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,10 @@ srv_g_response <- function(id,
378378
datasets = data
379379
)
380380

381-
qenv <- teal.code::eval_code(data(),
382-
'library("ggplot2");library("dplyr");library("forcats")')
381+
qenv <- teal.code::eval_code(
382+
data(),
383+
'library("ggplot2");library("dplyr");library("forcats")'
384+
)
383385

384386
anl_merged_q <- reactive({
385387
req(anl_merged_input())

R/tm_g_scatterplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ srv_g_scatterplot <- function(id,
574574
datasets = data,
575575
merge_function = "dplyr::inner_join"
576576
)
577-
qenv <- teal.code::eval_code(data(),'library("ggplot2");library("dplyr")')
577+
qenv <- teal.code::eval_code(data(), 'library("ggplot2");library("dplyr")')
578578

579579
anl_merged_q <- reactive({
580580
req(anl_merged_input())

0 commit comments

Comments
 (0)