| fac.nested {dae} | R Documentation |
creates a factor, the nested factor, whose values are generated within those of the factor nesting.fac
Description
Creates a nested factor whose levels are generated
within those of the factor nesting.fac. All elements of nesting.fac
having the same level are numbered from 1 to the number of different elements
having that level.
Usage
fac.nested(nesting.fac, nested.levs=NA, nested.labs=NA, ...)
Arguments
nesting.fac |
The |
nested.levs |
Optional |
nested.labs |
Optional |
... |
Further arguments passed to the |
Value
A factor that is a character vector with class attribute
"factor" and a levels attribute which
determines what character strings may be included in the vector. It has
a different level for of the values of the nesting.fac with the same level.
Note
The levels of nesting.fac do not have to be equally replicated.
Author(s)
Chris Brien
See Also
fac.gen, fac.multinested in package dae, factor.
Examples
## set up factor A
A <- factor(c(1, 1, 1, 2, 2))
## create nested factor
B <- fac.nested(A)