How to replace the “.” in column names generated by read.csv() with a single space when exporting?

前端 未结 4 1776
悲&欢浪女
悲&欢浪女 2020-12-24 13:25

I am using R to do some data pre-processing, and here is the problem that I am faced with: I input the data using read.csv(filename,header=TRUE), and then the s

相关标签:
4条回答
  • 2020-12-24 13:53

    If your set check.names=FALSE in read.csv when you read the data in then the names will not be changed and you will not need to edit them before writing the data back out. This of course means that you would need quote the column names (back quotes in some cases) or refer to the columns by location rather than name while editing.

    0 讨论(0)
  • 2020-12-24 13:57

    Here's a function (sorry, I know it could be refactored) that makes nice column names even if there are multiple consecutive dots and trailing dots:

    makeColNamesUserFriendly <- function(ds) {
      # FIXME: Repetitive.
    
      # Convert any number of consecutive dots to a single space.
      names(ds) <- gsub(x = names(ds),
                        pattern = "(\\.)+",
                        replacement = " ")
    
      # Drop the trailing spaces.
      names(ds) <- gsub(x = names(ds),
                        pattern = "( )+$",
                        replacement = "")
      ds
    }
    

    Example usage:

    ds <- makeColNamesUserFriendly(ds)
    
    0 讨论(0)
  • 2020-12-24 14:11

    To get spaces back in the names, do this (right before you export - R does let you have spaces in variable names, but it's a pain):

    # A simple regular expression to replace dots with spaces
    # This might have unintended consequences, so be sure to check the results
    names(yourdata) <- gsub(x = names(yourdata),
                            pattern = "\\.",
                            replacement = " ")
    

    To drop the first-column index, just add row.names = FALSE to your write.xlsx(). That's a common argument for functions that write out data in tabular format (write.csv() has it, too).

    0 讨论(0)
  • 2020-12-24 14:15

    Just to add to the answers already provided, here is another way of replacing the “.” or any other kind of punctation in column names by using a regex with the stringr package in the way like:

    require(“stringr”)   
    colnames(data) <- str_replace_all(colnames(data), "[:punct:]", " ")
    

    For example try:

    data <- data.frame(variable.x = 1:10, variable.y = 21:30, variable.z = "const")
    
    colnames(data) <- str_replace_all(colnames(data), "[:punct:]", " ")
    

    and

    colnames(data)
    

    will give you

    [1] "variable x" "variable y" "variable z"
    
    0 讨论(0)
提交回复
热议问题