Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I convert a factor to a numeric, the values change to rank values.

R> m$obs
 [1] 0  0  1  1  1  1  3  3  3  3  3  3  3  9  9  9  9  9  9  9  9  9  11 11 12 13 13 13 13 13 
 13 13 14
Levels: 0 1 3 9 11 12 13 14

R> as.numeric(m$obs)
 [1] 1 1 2 2 2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 5 6 7 7 7 7 7 7 7 8

I have to resort to paste() to get the real values.

R> paste(m$obs)
 [1] "0"  "0"  "1"  "1"  "1"  "1"  "3"  "3"  "3"  "3"  "3"  "3"  "3"  "9"  "9"  "9"  "9" "9"
 "9"  "9"  "9"  "9"  "11" "11" "12" "13" "13" "13" "13" "13" "13" "13" "14"
R> as.numeric(paste(m$obs))
 [1]  0  0  1  1  1  1  3  3  3  3  3  3  3  9  9  9  9  9  9  9  9  9 11 11 12 13 13 13 13 13 
 13 13 14

Is there a simpler way to convert a factor to numeric?

share|improve this question

1 Answer

up vote 54 down vote accepted

See the Warning section of ?factor:

In particular, as.numeric applied to a factor is meaningless, and may happen by implicit coercion. To transform a factor f to approximately its original numeric values, as.numeric(levels(f))[f] is recommended and slightly more efficient than as.numeric(as.character(f)).

share|improve this answer
For timings see this answer: stackoverflow.com/questions/6979625/… – Ari B. Friedman Aug 8 '11 at 11:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.