I know that it represents a linear model relationship case because the docs, but when is this way? (see example below inside the sumarise_all function) how could I interpret it?
library(tidyverse)
# Example data
df <- tibble(col1 = c(1, 2, 3, NA),
col2 = c(NA, NA, "a", "b"))
df %>% summarise_all(~ sum(is.na(.)))