Skip to content

Commit 89f1d44

Browse files
m7praverissimo
andauthored
clean up print(plot) in tm_g_distribution module (#810)
Signed-off-by: André Veríssimo <[email protected]> Co-authored-by: André Veríssimo <[email protected]>
1 parent 5f2d532 commit 89f1d44

16 files changed

+58
-57
lines changed

R/tm_g_distribution.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,15 +1241,16 @@ srv_distribution <- function(id,
12411241
data = output_dist_q,
12421242
transformators = decorators
12431243
)
1244+
12441245
decorated_output_dist_q <- reactive(within(req(decorated_output_dist_q_no_print()), expr = print(plot)))
12451246

12461247
decorated_output_qq_q_no_print <- srv_transform_teal_data(
12471248
"d_qq",
12481249
data = output_qq_q,
12491250
transformators = decorators
12501251
)
1251-
decorated_output_qq_q <- reactive(within(req(decorated_output_qq_q_no_print()), expr = print(plot)))
12521252

1253+
decorated_output_qq_q <- reactive(within(req(decorated_output_qq_q_no_print()), expr = print(plot)))
12531254

12541255
decorated_output_q <- reactive({
12551256
tab <- req(input$tabs) # tab is NULL upon app launch, hence will crash without this statement

man/tm_a_pca.Rd

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

man/tm_a_regression.Rd

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

man/tm_data_table.Rd

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

0 commit comments

Comments
 (0)