Horje
rename variables in r Code Example
rename column in r
# df = dataframe
# old.var.name = The name you don't like anymore
# new.var.name = The name you want to get

names(df)[names(df) == 'old.var.name'] <- 'new.var.name'
r rename columns
library(plyr)
rename(d, c("beta"="two", "gamma"="three"))
#>   alpha two three
#> 1     1   4     7
#> 2     2   5     8
#> 3     3   6     9
rename variables in r
my_data %>% 
  rename(
    sepal_length = Sepal.Length,
    sepal_width = Sepal.Width
    )




17

Related
remove elements from character vector in r Code Example remove elements from character vector in r Code Example
loop through list in r Code Example loop through list in r Code Example
r rename columns Code Example r rename columns Code Example
how to count the number of NA in r Code Example how to count the number of NA in r Code Example
r count number of na Code Example r count number of na Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15