crossFactors {s20x} | R Documentation |
Crossed Factors
Description
Computes a factor that has a level for each combination of the factors 'fac1' and 'fac2'.
Usage
crossFactors(x, fac2 = NULL, ...)
## Default S3 method:
crossFactors(x, fac2 = NULL, ...)
## S3 method for class 'formula'
crossFactors(formula, fac2 = NULL, data = NULL, ...)
Arguments
x |
the name of the first factor or a formula in the form |
fac2 |
the name of the second factor - ignored if |
... |
Optional arguments |
formula |
a formula in the form |
data |
an optional data frame in which to evaluate the formula |
Value
Returns a vector containing the factor which represents the interaction of the given factors.
Methods (by class)
-
crossFactors(default)
: Crossed Factors -
crossFactors(formula)
: Crossed Factors
Note
This function actually returns a factor
now instead of a character string, so coercion into a factor
is no longer necessary.
See Also
Examples
## arousal data:
data(arousal.df)
gender.picture = crossFactors(arousal.df$gender, arousal.df$picture)
gender.picture
## arousal data:
data(arousal.df)
gender.picture = crossFactors(~ gender * picture, data = arousal.df)
gender.picture
[Package s20x version 3.1-40 Index]