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

后端 未结 12 1218
我寻月下人不归
我寻月下人不归 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:31

    Alternatively, you may be able to achieve the same results with the stringr package.

    names(ctm2) <- names(ctm2) %>% stringr::str_replace_all("\\s","_")

提交回复
热议问题