I'm trying to use recode
in R (from the car
package) and it is not working. I read in data from a .csv file into a data frame called results
. Then, I replace the values in the column Built_year
, according to the following logic.
recode(results$Built_year, "2 ='1950s';3='1960s';4='1970s';5='1980s';6='1990s';7='2000 or later'")
When I check results$Built_year
after doing this step, it appears to have worked. However, it does not store this value, and returns to its previous value. I don't understand why.
Thanks.
(at the moment something is going wrong and I can't see any of the icons for formatting)