We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Run the following example from ?as_gt()
?as_gt()
gs_power_wlr() %>% summary() %>% as_gt( colname_spanner = "Cumulative probability to cross boundaries", colname_spannersub = c("under H1", "under H0") )
yields the following warning message:
Warning message: In max((x %>% dplyr::filter(Bound == display_bound[1]))[[colname_spannersub[2]]]) : no non-missing arguments to max; returning -Inf
For this reason, suppressWarnings() had to be used in as_gt() tests in #337 to keep test outputs clean.
suppressWarnings()
as_gt()
The text was updated successfully, but these errors were encountered:
The message is from https://github.com/Merck/gsDesign2/blob/main/R/as_gt.R#L255, which was originally re-org by @yihui.
@nanxstats, @yihui and @jdblischak, Is anyone available to volunteer to handle this?
Sorry, something went wrong.
I'll take a look.
colname_spannersub
Fixed in #495.
Successfully merging a pull request may close this issue.
Run the following example from
?as_gt()
yields the following warning message:
For this reason,
suppressWarnings()
had to be used inas_gt()
tests in #337 to keep test outputs clean.The text was updated successfully, but these errors were encountered: