Description Usage Arguments Details Value Author(s) Examples
View source: R/as.numeric.factor.R
Internal function which will drop unused levels and convert remaining to a number from 1 to n.levels.
1  | as.numeric.factor(x,drop.levels=TRUE)
 | 
x | 
 Normally a factor, can be a numeric vector(will be output unchanged)  | 
drop.levels | 
 Boolean, should unused levels be dropped?  | 
Simple internal function, used to direct categorical variables to a 1 dimensional scale.
A vector of same length, where each category/level is replaced with number from 1 to n
Soren Havelund Welling
1 2 3  | as.numeric.factor = forestFloor:::as.numeric.factor #import to environment
some.factor = factor(c("dog","cat","monkey")[c(1,3,2,1,3,2,1,1)]) #make factor
a.numeric.vector = as.numeric.factor(some.factor) #convert factor representation.
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.