asOneFormula(nlme)
asOneFormula()所属R语言包:nlme
Combine Formulas of a Set of Objects
结合一组对象的公式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The names of all variables used in the formulas extracted from the objects defined in ... are converted into a single linear formula, with the variables names separated by +.
在从...定义的对象中提取的公式中使用的所有变量的名称被转换成一个单一的线性公式,与+分离的变量名。
用法----------Usage----------
asOneFormula(..., omit)
参数----------Arguments----------
参数:...
objects, or lists of objects, from which a formula can be extracted.
对象或对象的名单,从公式可以提取。
参数:omit
an optional character vector with the names of variables to be omitted from the returned formula. Defaults to c(".", "pi").
从返回的公式被省略可选的特征向量与变量的名称。默认为c(“。”,“PI”)。
值----------Value----------
a one-sided linear formula with all variables named in the formulas extracted from the objects in ..., except the ones listed in omit.
一种片面的,所有的变量命名在从...对象中提取公式除了omit上市的线性公式。
作者(S)----------Author(s)----------
Jose Pinheiro and Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参见----------See Also----------
formula, all.vars
formula,all.vars
举例----------Examples----------
asOneFormula(y ~ x + z | g, list(~ w, ~ t * sin(2 * pi)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|