A very basic question. I have a data frame with 14 variables and 576 observations.
> head(Boston)
crim zn indus chas nox rm age dis rad tax ptratio black lstat medv
1 0.00632 18 2.31 0 0.538 6.575 65.2 4.0900 1 296 15.3 396.90 4.98 24.0
2 0.02731 0 7.07 0 0.469 6.421 78.9 4.9671 2 242 17.8 396.90 9.14 21.6
3 0.02729 0 7.07 0 0.469 7.185 61.1 4.9671 2 242 17.8 392.83 4.03 34.7
4 0.03237 0 2.18 0 0.458 6.998 45.8 6.0622 3 222 18.7 394.63 2.94 33.4
5 0.06905 0 2.18 0 0.458 7.147 54.2 6.0622 3 222 18.7 396.90 5.33 36.2
6 0.02985 0 2.18 0 0.458 6.430 58.7 6.0622 3 222 18.7 394.12 5.21 28.7
I want to create a new column
CATMEDV
populated with a value of1
or0
for each record. Ifmedv > 30.0, CATMEDV=1
,IF medv < 30, CATMEDV=0
If I want to add multiple conditions, say
medv>30.0
andrm>7
thenCATMEDV=1, else 0
. How can I do this?
Also, everytime I paste a data frame from my R Console to a question, it gets jumbled and some moderator re-formats it. How do I paste data frames in question windows without muddling the format from R?