Skip to content

Commit e772983

Browse files
committed
fix: ordering of columns and minor bug
1 parent 8ee1450 commit e772983

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

R/tm_outliers.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,8 @@ srv_outliers <- function(id, data, reporter, filter_panel_api, outlier_var,
722722
# Generate decoratable object from data
723723
qenv <- within(qenv, {
724724
table <- rlistings::as_listing(
725-
tibble::rownames_to_column(summary_table, var = " ")
725+
tibble::rownames_to_column(summary_table, var = " "),
726+
key_cols = character(0L)
726727
)
727728
})
728729

@@ -1021,7 +1022,7 @@ srv_outliers <- function(id, data, reporter, filter_panel_api, outlier_var,
10211022
expr_is_reactive = TRUE
10221023
)
10231024
},
1024-
setNames(c("box_plot", "density_plot", "cumulative_plot")),
1025+
stats::setNames(nm = c("box_plot", "density_plot", "cumulative_plot")),
10251026
c(box_plot_q, density_plot_q, cumulative_plot_q)
10261027
)
10271028

teal.modules.general.Rproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Version: 1.0
2+
ProjectId: 2782a0d1-5126-4b5c-b177-1150fb426d43
23

34
RestoreWorkspace: No
45
SaveWorkspace: No

0 commit comments

Comments
 (0)