-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Type: Package | ||
Package: teal.goshawk | ||
Title: Longitudinal Visualization `teal` Modules | ||
Version: 0.2.0.9021 | ||
Date: 2025-01-15 | ||
Version: 0.2.0.9022 | ||
Date: 2025-01-21 | ||
Authors@R: c( | ||
person("Nick", "Paszty", , "[email protected]", role = c("aut", "cre")), | ||
person("Dawid", "Kaledkowski", , "[email protected]", role = "aut"), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# teal.goshawk 0.2.0.9021 | ||
# teal.goshawk 0.2.0.9022 | ||
|
||
# teal.goshawk 0.2.0 | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ | |
#' @param alpha numeric vector to define transparency of plotted points. | ||
#' | ||
#' @inheritParams teal.widgets::standard_layout | ||
#' @inheritParams teal::module | ||
#' | ||
#' @author Jeff Tomlinson (tomlinsj) [email protected] | ||
#' @author Balazs Toth (tothb2) [email protected] | ||
|
@@ -168,7 +169,8 @@ tm_g_gh_boxplot <- function(label, | |
dot_size = c(2, 1, 12), | ||
alpha = c(0.8, 0.0, 1.0), | ||
pre_output = NULL, | ||
post_output = NULL) { | ||
post_output = NULL, | ||
transformators = list()) { | ||
message("Initializing tm_g_gh_boxplot") | ||
checkmate::assert_string(label) | ||
checkmate::assert_string(dataname) | ||
|
@@ -212,7 +214,8 @@ tm_g_gh_boxplot <- function(label, | |
module_args = args | ||
), | ||
ui = ui_g_boxplot, | ||
ui_args = args | ||
ui_args = args, | ||
transformators = transformators | ||
) | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
#' | ||
#' @inheritParams teal.widgets::standard_layout | ||
#' @inheritParams tm_g_gh_scatterplot | ||
#' @inheritParams teal::module | ||
#' | ||
#' | ||
#' @author Nick Paszty (npaszty) [email protected] | ||
|
@@ -129,7 +130,8 @@ tm_g_gh_density_distribution_plot <- function(label, # nolint | |
comb_line = TRUE, | ||
rotate_xlab = FALSE, | ||
pre_output = NULL, | ||
post_output = NULL) { | ||
post_output = NULL, | ||
transformators = list()) { | ||
message("Initializing tm_g_gh_density_distribution_plot") | ||
checkmate::assert_string(label) | ||
checkmate::assert_string(dataname) | ||
|
@@ -168,7 +170,8 @@ tm_g_gh_density_distribution_plot <- function(label, # nolint | |
module_args = args | ||
), | ||
ui = ui_g_density_distribution_plot, | ||
ui_args = args | ||
ui_args = args, | ||
transformators = transformators | ||
) | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,7 @@ | |
#' @param hline_vars_colors a character vector naming the colors for the additional horizontal lines. | ||
#' @param hline_vars_labels a character vector naming the labels for the additional horizontal lines that will appear | ||
#' in the legend. | ||
#' @inheritParams teal::module | ||
#' @inheritParams teal.widgets::standard_layout | ||
#' | ||
#' @author Wenyi Liu (luiw2) [email protected] | ||
|
@@ -188,7 +189,8 @@ tm_g_gh_spaghettiplot <- function(label, | |
hline_vars_colors = "green", | ||
hline_vars_labels = hline_vars, | ||
pre_output = NULL, | ||
post_output = NULL) { | ||
post_output = NULL, | ||
transformators = list()) { | ||
message("Initializing tm_g_gh_spaghettiplot") | ||
|
||
# Validate string inputs | ||
|
@@ -258,6 +260,7 @@ tm_g_gh_spaghettiplot <- function(label, | |
), | ||
ui = g_ui_spaghettiplot, | ||
ui_args = args, | ||
transformators = transformators, | ||
datanames = dataname | ||
) | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.