crossFactors(s20x)
crossFactors()所属R语言包:s20x
Crossed Factors
交叉因素
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes a factor that has a level for each combination of
计算具有的电平的每个组合的一个因素
用法----------Usage----------
crossFactors(x, fac2 = NULL, ...)
## Default S3 method:[默认方法]
crossFactors(x, fac2 = NULL, ...)
## S3 method for class 'formula'[类formula的方法]
crossFactors(formula, fac2 = NULL, data = NULL, ...)
参数----------Arguments----------
参数:x
the name of the first factor or a formula in the form ~fac1*fac2
的名称,第一个因子或公式的形式~FAC1 * fac2
参数:fac2
the name of the second factor - optional if x is a formula.
名称的第二个因素 - 可选的,如果x是一个公式。
参数:formula
a formula in the form ~fac1*fac2
公式的形式FAC1 fac2
参数:data
an optional data frame in which to evaluate the formula
一个可选的数据框在其中计算式
参数:...
Optional arguments
可选参数
值----------Value----------
Returns a vector containing the factor which represents the interaction of the given factors.
返回的向量,含有该因子代表给定的因素之间的相互作用。
参见----------See Also----------
"factor".
“因子”。
实例----------Examples----------
## arousal data:[#兴奋的数据:]
data(arousal.df)
gender.picture<-factor(crossFactors(arousal.df$gender,arousal.df$picture))
gender.picture
## arousal data:[#兴奋的数据:]
data(arousal.df)
gender.picture<-factor(crossFactors(~gender*picture, data = arousal.df))
gender.picture
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|