Answers for "r script rename column"

R
1

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
Posted by: Guest on March-25-2020

Browse Popular Code Answers by Language