showall(saemix)
showall()所属R语言包:saemix
Prints out an extensive summary of an object
打印出一个对象的一个广泛的概要
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function shows an extensive summary of an object, and is used mainly to visualise the majority of the elements of an object
此功能可显示一个对象的一个广泛的概要,并主要是用于可视化一个对象的元素的大多数
用法----------Usage----------
showall(object)
参数----------Arguments----------
参数:object
showall methods are available for objects of typeSaemixData, SaemixModel and SaemixObject
是为对象的typeSaemixData,SaemixModel和SaemixObject提供SHOWALL方法
Details
详细信息----------Details----------
None
无
值----------Value----------
None
无
参见----------See Also----------
SaemixData,SaemixModel, SaemixObject
SaemixData,SaemixModel,SaemixObject
实例----------Examples----------
# A SaemixData object[一个SaemixData对象]
data(theo.saemix)
saemix.data<-saemixData(name.data=theo.saemix,header=TRUE,sep=" ",na=NA,
name.group=c("Id"),name.predictors=c("Dose","Time"),
name.response=c("Concentration"),name.covariates=c("Weight","Sex"),
units=list(x="hr",y="mg/L",covariates=c("kg","-")), name.X="Time")
showall(saemix.data)
# A SaemixModel object[一个SaemixModel对象]
model1cpt<-function(psi,id,xidep) {
dose<-xidep[,1]
tim<-xidep[,2]
ka<-psi[id,1]
V<-psi[id,2]
CL<-psi[id,3]
k<-CL/V
ypred<-dose*ka/(V*(ka-k))*(exp(-k*tim)-exp(-ka*tim))
return(ypred)
}
saemix.model<-saemixModel(model=model1cpt,
description="One-compartment model with first-order absorption",
psi0=matrix(c(1.,20,0.5,0.1,0,-0.01),ncol=3, byrow=TRUE,
dimnames=list(NULL, c("ka","V","CL"))),transform.par=c(1,1,1),
covariate.model=matrix(c(0,1,0,0,0,0),ncol=3,byrow=TRUE),fixed.estim=c(1,1,1),
covariance.model=matrix(c(1,0,0,0,1,0,0,0,1),ncol=3,byrow=TRUE),
omega.init=matrix(c(1,0,0,0,1,0,0,0,1),ncol=3,byrow=TRUE),error.model="constant")
showall(saemix.model)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|