Hello everyone.
I want to identify numeric columns and then with across I want to round them to 2.
See my dummy code:
df <- tibble(x = 0.123456789:10.123456789,
y = 0.123456789:10.123456789,
z = 0.123456789:10.123456789)
df %>% mutate(across(where(is.numeric(.)), round(.,2))) ***WRONG***
Thank you for your help.
Cheers