简体   繁体   中英

Rename a lot of column r

I have 2 data frames with column names:

print(colnames(selectedTrainData))
 [1] "V331" "V305" "V310" "V161" "V322" "V271" "V355" "V83"  "V185" "V10" 

print(colnames(selectedTestData))
 [1] "V330" "V304" "V309" "V160" "V321" "V270" "V354" "V82"  "V184" "V9"

Here is difference at 1 between colnames. How rename colnames of 1st data frame, to make it less at 1?

Here is a step-by-step breakdown

## first grab the column names as its own object
nms <- colnames(selectedTestData)

## second, strip out the starting "V"
nms <- gsub("V", "", nms)

## next, convert to a number
nms <- as.numeric(nms)

## substract 1 from each number
nms <- nms - 1

## The numbers are ready, now just paste the "V" back
nms <- paste("V", nms, sep="")

## Lastly, put the names back onto the original matrix or data.frame
colnames(selectedTestData) <- nms

Starting: 

   [1] "V330" "V304" "V309" "V160" "V321" "V270" "V354" "V82"  "V184" "V9"  

Ending: 

  [1] "V329" "V303" "V308" "V159" "V320" "V269" "V353" "V81"  "V183" "V8"  

If the numbers are always trailing elements, this works:

txt <- colnames(selectedTrainData)
r   <- regexpr('\\d+', txt)
colnames(selectedTrainData) <-
  paste(
    substr(txt, 1, r-1), 
    as.numeric(substring(txt, r))-1,
    sep=''
  )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM