cat.pc(xpose4specific)
cat.pc()所属R语言包:xpose4specific
Categorical (visual) predictive check.
分类(视觉)预测检查。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Categorical (visual) predictive check plots.
类别(视觉)的预测检查的图。
用法----------Usage----------
cat.pc(object,
dv=xvardef("dv",object),
idv=xvardef("idv",object),
level.to.plot=NULL,
subset=NULL,
histo=T,
median.line=F,
PI.lines=F,
xlb=if(histo){
paste("Proportion of ",dv)
} else {
paste(idv)
},
ylb=if(histo){
paste("Percent of Total")
} else {
paste("Proportion of Total")
},
main=xpose.create.title.text(NULL,dv,
"Predictive check of",object,subset=subset,...),
strip="Default",
...)
参数----------Arguments----------
参数:object
Xpose data object.
XPOSE数据对象。
参数:dv
The dependent variable (e.g. "DV" or "CP".)
因变量(例如"DV"或"CP"。)
参数:idv
The indenpent variable (e.g. "TIME".)
indenpent变量(例如"TIME")。
参数:level.to.plot
The levels to plot.
水平图。
参数:subset
Subset of data.
数据子集。
参数:histo
If FALSE then a VPC is created, given that idv is defined.
如果FALSE然后创建一个VPC,,idv定义。
参数:median.line
Make a median line?
中位线吗?
参数:PI.lines
Make prediction interval lines?
请预测区间线?
参数:xlb
Label for x axis.
出版商为x轴。
参数:ylb
label for y axis.
y轴的标签。
参数:main
Main title.
主标题。
参数:strip
Defining how the strips should appear in the conditioning plots.
定义如何带应该会出现在调节曲线。
参数:...
Extra arguments passed to the function.
额外的参数传递给函数。
(作者)----------Author(s)----------
Andrew C. Hooker
实例----------Examples----------
## Not run: [#不运行:]
## read in table files[#读入表文件]
runno <- 45
xpdb <- xpose.data(runno)
## create proportion (visual) predictive check[#创建一个比例(视觉)的预测检查]
cat.pc(xpdb,idv=NULL)
cat.pc(xpdb,idv="DOSE")
cat.pc(xpdb,idv="DOSE",histo=F)
cat.pc(xpdb,idv="TIME",histo=T,level.to.plot=1)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|