penguins %>%
mutate(body_mass_kg=body_mass_g/1000, flipper_lengt_m=flipper_length_mm/1000)
every time I use the mutate function for more than one variable, always the variable after the comma doesn't appear in the Tibble but shows me this message :
# 1 more variable: flipper_lengt_m
I don't understand how can I show this new column.
Can someone help me?