How to fix spaces in column names of a data.frame (remove spaces, inject dots)?

后端 未结 12 1230
我寻月下人不归
我寻月下人不归 2020-12-07 15:28

After importing a file, I always try try to remove spaces from the column names to make referral to column names easier.

Is there a better way to do this other then

12条回答
  •  广开言路
    2020-12-07 16:30

    If you use read.csv() to import your data (which replaces all spaces " " with ".") you can replace these instead with an underscore "_" using:

    names(df) <- gsub("\\.", "_", names(df))
    

提交回复
热议问题