RandomForest has returned object, prd, which is class numeric with indices:
> prd
298 252 373 117 0 16 442 74
4397.9232 1826.1264 1787.1963 1388.8097 1075.7217 873.9856 1602.7068 1775.1237
class(prd)
[1] "numeric"
I want to do a correlation test, which means getting obs in the same format. Currently, obs is a one-column data frame:
> obs
e2004MeanY
298 4261
252 1821
373 1710
117 1138
How do I convert obs to the correct format? I can't figure out how to tie the indices to the values in a numeric.
obslooks like it has two columns. Is the first col of numbers the row names? – Carl Witthoft Jul 10 '12 at 19:06> dim(obs) [1] 122 1It only has one column, the left 'column' are the indices – Zug Jul 10 '12 at 19:07str(prd)? – Ananda Mahto Jul 10 '12 at 19:10> str(prd) Named num [1:122] 4398 1826 1787 1389 1076 ... - attr(*, "names")= chr [1:122] "298" "252" "373" "117" ...– Zug Jul 10 '12 at 19:14obs[, 1]? – Gavin Simpson Jul 10 '12 at 19:24