Replies: 1 comment
-
As a workaround I defined a function that puts missing when values are too small mean_na_small <- function(x) {
my_mean<- sum(x, na.rm = TRUE)
my_mean<- ifelse(my_mean< 18, NA, my_mean)
my_mean
} along with the missing_text argument of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
An issue was opened about this #1878
I would like the mean for group 0 to be substituted as small too ?
Beta Was this translation helpful? Give feedback.
All reactions