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
group_modify_safely
add NA for grouping level where the function fails
NA
library(tidyverse) df <- tibble(x1 = 1.2, x2 = 1.3, x3 = 1.4) dplyr::bind_rows(df, df %>% mutate(across(everything(), ~ .x * NA))) #> # A tibble: 2 x 3 #> x1 x2 x3 #> <dbl> <dbl> <dbl> #> 1 1.2 1.3 1.4 #> 2 NA NA NA
Created on 2021-06-02 by the reprex package (v2.0.0)
Will be a general version of something like this: https://github.com/IndrajeetPatil/ggstatsplot/blob/e8791db76f5ac705eac0a54d70897c7daa21af2f/R/helpers_ggcatstats_graphics.R#L89
The text was updated successfully, but these errors were encountered:
grouped_safely
No branches or pull requests
add
NA
for grouping level where the function failsCreated on 2021-06-02 by the reprex package (v2.0.0)
Will be a general version of something like this:
https://github.com/IndrajeetPatil/ggstatsplot/blob/e8791db76f5ac705eac0a54d70897c7daa21af2f/R/helpers_ggcatstats_graphics.R#L89
The text was updated successfully, but these errors were encountered: