I am having trouble writing a code that would replace all specified values in multiple columns with new values. The data frame has 20+ columns and I only want to change values in 8 columns (col1, col2, col3, etc). I want to replace all values (4, 5, 6, 7) with (0, -1, -2, -3) respectively. I have very limited knowledge in R and progamming and I have only been able to get a solution that would do the job for one column.
I have read so many solutions to similar questions on here but I could find a solution that works for me. So here is my code:
data$col1[raw_data$col1 == 4 ] <- 0
data$col1[raw_data$col1 == 5 ] <- -1
data$col1[raw_data$col1 == 6] <- -2
data$col1[raw_data$col1 == 7] <- -3
So this works well for one column. can I possibly do it one for all columns?
Set up an example:
replace just the relevant columns:
gives:
Explanation:
dplyr version:
dplyr version 2
Excessive complexity for this toy example, but allowing for more complex replacements than simple math: