Horje
rename columns based on a variable in r Code Example
rename columns based on a variable 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'
rename column in r
my_data %>% 
  rename(
    sepal_length = Sepal.Length,
    sepal_width = Sepal.Width
    )
rename columns based on a variable in r
df <- rename(df, new_name = old_name) #For renaming dataframe column
 
tbl <- rename(tbl, new_name = old_name) #For renaming tibble column
 
tbl <- tbl %>% rename(new_name = old_name) #For renaming tibble column using dplyrpipe 
                                           #operator 
Source: honingds.com




17

Related
rename variables in r Code Example rename variables in r Code Example
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

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