I have a train data set which has these 40 soil_types name soil_type1 to soil type40.
Id ..... Elevation s1 s2 s3 s4 s5.........s40
1 ..... 347 0 1 0 0 0 0
2 ..... 354 0 0 0 1 0 0
3 ..... 554 0 0 1 0 0 0
I want to merge these columns s1
to s40
into a single column s
like this.
Id ..... Elevation s
1 ..... 347 s2
2 ..... 354 s4
3 ..... 554 s3
I can think of doing like this but there is got to be better way in R.
train$s <- NA
train$s[trains$S1 == 1] <- s1
train$s[trains$S2 == 1] <- s2
.
.
.
train$s[trains$S29 == 1] <- s29
Edit : Please note that there are other data column present
We can subset the 's' column, get the index with
max.col
andcbind
with the first columnOr another efficient option is
data