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?
The new column is inside your tibble, but is not shown because of stylistic decisions made by the developers. If you assign it to a new data.frame and check its columns, either by str(myTibble) or colnames(myTibble), you will see it.
Given the width of you console pane, there is enough room to display body_mass_kg but not enough for flipper_length_m too. It does alert you that flipper_length_m is not shown. This happens more often on my MacBook than the iMac with the 27 inch screen.
If you assign the output to a new data frame, then you can see all of the columns using view() or clicking on the name in the environment pane.