Skip to content

Commit 27611dd

Browse files
committed
Change single quotes to double quotes
1 parent 6741892 commit 27611dd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

R/tm_a_pca.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ srv_a_pca <- function(id, data, reporter, filter_panel_api, dat, plot_height, pl
438438
selector_list = selector_list,
439439
datasets = data
440440
)
441-
qenv <- teal.code::eval_code(data(), "library('ggplot2')")
441+
qenv <- teal.code::eval_code(data(), 'library("ggplot2")')
442442
anl_merged_q <- reactive({
443443
req(anl_merged_input())
444444
qenv %>%

R/tm_data_table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ srv_data_table <- function(id,
319319

320320
teal::validate_has_data(df, min_nrow = 1L, msg = paste("data", dataname, "is empty"))
321321
qenv <- teal.code::eval_code(data(),
322-
"library('ggplot2');library('dplyr');library('DT')")
322+
'library("ggplot2");library("dplyr");library("DT")')
323323
teal.code::eval_code(
324324
qenv,
325325
substitute(

R/tm_g_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ srv_distribution <- function(id,
543543
)
544544

545545
qenv <- teal.code::eval_code(data(),
546-
"library('ggplot2');library('forcats');library('dplyr')")
546+
'library("ggplot2");library("forcats");library("dplyr")')
547547

548548
anl_merged_q <- reactive({
549549
req(anl_merged_input())

R/tm_g_response.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ srv_g_response <- function(id,
379379
)
380380

381381
qenv <- teal.code::eval_code(data(),
382-
"library('ggplot2');library('dplyr');library('forcats')")
382+
'library("ggplot2");library("dplyr");library("forcats")')
383383

384384
anl_merged_q <- reactive({
385385
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())

R/tm_missing_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ srv_missing_data <- function(id,
536536
group_var <- input$group_by_var
537537
anl <- data_r()
538538
qenv <- teal.code::eval_code(data(), {
539-
"library('dplyr');library('ggplot2');library('tidyr');library('forcats');library('glue')"
539+
'library("dplyr");library("ggplot2");library("tidyr");library("forcats");library("glue")'
540540
})
541541

542542
qenv <- if (!is.null(selected_vars()) && length(selected_vars()) != ncol(anl)) {

0 commit comments

Comments
 (0)