as.numeric.factor: Convert a factor to numeric.vector.

Description Usage Arguments Details Value Author(s) Examples

View source: R/as.numeric.factor.R

Description

Internal function which will drop unused levels and convert remaining to a number from 1 to n.levels.

Usage

1
as.numeric.factor(x,drop.levels=TRUE)

Arguments

x

Normally a factor, can be a numeric vector(will be output unchanged)

drop.levels

Boolean, should unused levels be dropped?

Details

Simple internal function, used to direct categorical variables to a 1 dimensional scale.

Value

A vector of same length, where each category/level is replaced with number from 1 to n

Author(s)

Soren Havelund Welling

Examples

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.

forestFloor documentation built on May 2, 2019, 2:40 a.m.