-
-
Notifications
You must be signed in to change notification settings - Fork 15
Replace table by plot on tm_missing_data #922
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 8 commits
ec44372
4593c88
586b960
c4a13cc
dda7615
ea38ac1
ee7f4b6
1159a49
c296936
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,9 +37,9 @@ | |
#' It takes the form of `c(value, min, max)` and it is passed to the `value_min_max` | ||
#' argument in `teal.widgets::optionalSliderInputValMinMax`. | ||
#' | ||
# nolint start: line_length. | ||
# nolint start: line_length | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, this puzzles me. But note that if you search for |
||
#' @param ggplot2_args `r roxygen_ggplot2_args_param("Response vs Regressor", "Residuals vs Fitted", "Scale-Location", "Cook's distance", "Residuals vs Leverage", "Cook's dist vs Leverage")` | ||
# nolint end: line_length. | ||
# nolint end: line_length | ||
#' | ||
#' @inherit shared_params return | ||
#' | ||
|
@@ -465,7 +465,7 @@ srv_a_regression <- function(id, | |
teal.reporter::teal_card(obj), | ||
teal.reporter::teal_card("## Module's code") | ||
) | ||
teal.code::eval_code(obj, 'library("ggplot2");library("dplyr")') # nolint: quotes | ||
teal.code::eval_code(obj, 'library("ggplot2");library("dplyr")') # nolint: quotes_lintr | ||
}) | ||
|
||
anl_merged_q <- reactive({ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -565,7 +565,7 @@ srv_g_bivariate <- function(id, | |
obj %>% | ||
teal.code::eval_code( | ||
c( | ||
|
||
'library("ggplot2");library("dplyr")', # nolint: quotes | ||
'library("ggplot2");library("dplyr")', # nolint: quotes_lintr | ||
as.expression(anl_merged_input()$expr) | ||
) | ||
) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need the quotes for all of these :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to update all the library calls of modules on this package? I think in the past we changed this and then we had to revert it back.