Thanks for a fantastic video. You mentioned that the base R pipe symbol (|>) doesn't seem to work in pointblank, but the magrittr one (%>%) does. Could this be because in some cases pointblank uses the dot (.) placeholder which does not work with the base r pipe? For example, it is used in the Table information example on the pointblank web page: info_snippet( snippet_name = "a_mean", fn = ~ . %>% .$a %>% mean(na.rm = TRUE) %>% round(2) ) %>%
This was a great presentation. please share cheatsheet link here
Thanks for a fantastic video. You mentioned that the base R pipe symbol (|>) doesn't seem to work in pointblank, but the magrittr one (%>%) does. Could this be because in some cases pointblank uses the dot (.) placeholder which does not work with the base r pipe? For example, it is used in the Table information example on the pointblank web page:
info_snippet(
snippet_name = "a_mean",
fn = ~ . %>% .$a %>% mean(na.rm = TRUE) %>% round(2)
) %>%