ddim(TwoStepCLogit)
ddim()所属R语言包:TwoStepCLogit
Data dimension statistics
数据维度统计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function that computes dimension statistics for a data set with clusters and strata and its print method.
函数,计算聚类和阶层,它的print方法与数据集维度统计。
用法----------Usage----------
ddim(formula, data)
## S3 method for class 'ddim'
print(x, ...)
参数----------Arguments----------
参数:formula
A formula object, with the response on the left of a ~ operator and, on the right hand side, a strata and a cluster term (ex. formula = Y ~ strata(var_strata) + cluster(var_cluster)). The strata and cluster functions (from the package survival) are used to identify the stratification and the cluster variables, respectively.
一个公式对象,在左侧的~运营商的响应,在右手边,一个strata和cluster术语(例如formula = Y ~ strata(var_strata) + cluster(var_cluster))。 strata和cluster函数(从包中生存)用于识别的分层和聚类变量,分别。
参数:data
A data frame (or object coercible by as.data.frame to a data frame) containing the variables in the model.
一个数据框(或对象强制转换通过as.data.frame的数据框),其中包含在模型中的变量。
参数:x
An object, produced by the ddim function, to print.
打印,产生的ddim功能,对象。
参数:...
Further arguments to be passed to print.default.
进一步的参数被传递给print.default。
值----------Value----------
参数:Sc
The number of strata in each cluster.
在每个聚类的数量阶层。
参数:Ystat
A data.frame with n, the numbers of observations per stratum (ncs), and m, the sum of the responses per stratum (mcs).
数据框与n,观察每个阶层的数量(ncs),和m(mcs)的总和,每个阶层的反应。
参见----------See Also----------
Ts.estim
Ts.estim
实例----------Examples----------
data(bison)
dimstat <- ddim(formula = Y ~ strata(Strata) + cluster(Cluster), data = bison)
dimstat
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|