简体   繁体   中英

recode variable to multiple new values

I have a dataset that contains observed scores for a group of people, like this:

person_id <- c(1:50)
person_score <- rep(1:10,5)
people <- data.frame(person_id, person_score)

I need to create a set of new variables that are recoded values of the observed scores. I have a set of variables that are the "keys" for transforming the observed scores to the new variables, like this:

observed <- c(1,2,3,4,5,6,7,8,9,10)
score1 <- c(10,14,17,18,20,21,22,26,28,31)
score2 <- c(6,9,11,14,17,18,20,24,25,26)
score3 <- c(11,13,15,17,19,21,23,25,27,29)
score4 <- c(43,44,45,46,47,48,49,50,51,52)
scores <- data.frame(observed,score1,score2, score3, score4)

...where the first value corresponds to observed score = 1, the second value corresponds to observed score = 2, and so on.

I need to create four new variables that correspond to score1, score2, score3, and score 4. I can think of doing the recoding manually, as shown below, but it is very slow and tedious:

people$value1[person_score == 1] <- 10
people$value1[person_score == 2] <- 14

...and so on for score1

people$value2[person_score == 1] <- 6
people$value2[person_score == 2] <- 9

...and so on for score2

people$value3[person_score == 1] <- 11
people$value3[person_score == 2] <- 13

...and so on for score3

people$value4[person_score == 1] <- 43
people$value4[person_score == 2] <- 44

...and so on for score4

I would just use match to find the correct rows from the scores data.frame ...

idx <- match( people$person_score , scores$observed )

people_new <- cbind( people , scores[ idx , -1 ] )

head(people_new)
#  person_id person_score score1 score2 score3 score4
#1         1            1     10      6     11     43
#2         2            2     14      9     13     44
#3         3            3     17     11     15     45
#4         4            4     18     14     17     46
#5         5            5     20     17     19     47
#6         6            6     21     18     21     48

You could use the qdap package's lookup function as follows:

## person_id <- c(1:50)
## person_score <- rep(1:10,5)
## people <- data.frame(person_id, person_score)
## 
## observed <- c(1,2,3,4,5,6,7,8,9,10)
## score1 <- c(10,14,17,18,20,21,22,26,28,31)
## score2 <- c(6,9,11,14,17,18,20,24,25,26)
## score3 <- c(11,13,15,17,19,21,23,25,27,29)
## score4 <- c(43,44,45,46,47,48,49,50,51,52)
## scores <- data.frame(observed,score1,score2, score3, score4)

library(qdap)
people[, 3:6] <- lapply(scores[, -1], function(x) lookup(people$person_score, scores[, 1], x))

people
##    person_id person_score score1 score2 score3 score4
## 1          1            1     10      6     11     43
## 2          2            2     14      9     13     44
## 3          3            3     17     11     15     45
## 4          4            4     18     14     17     46
## 5          5            5     20     17     19     47
## 6          6            6     21     18     21     48
## 7          7            7     22     20     23     49
.
.
.
## 50        50           10     31     26     29     52

It is just a join of the two data.frames: you can use merge

merge( people, scores, by.x = "person_score", by.y = "observed", all.x = TRUE )

or sqldf .

library(sqldf)
sqldf( "
  SELECT    *
  FROM      people
  LEFT JOIN scores
  ON        people.person_score = scores.observed
" )

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