Answers for "how to change variable name in r"

R
1

rename variables in r

my_data %>% 
  rename(
    sepal_length = Sepal.Length,
    sepal_width = Sepal.Width
    )
Posted by: Guest on May-26-2020

Code answers related to "how to change variable name in r"

Browse Popular Code Answers by Language