simPats(randPack)
simPats()所属R语言包:randPack
A function to simulate patient covariate data.
函数来模拟病人协的数据。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function allows for a relatively simple description of covariates for patients in a clinical trial and then the subsequent simulation of a cohort of the necessary size.
该功能允许患者在临床试验中的协变量相对简单的描述,然后随后的模拟所需大小的队列。
用法----------Usage----------
simPats(npat, factList)
参数----------Arguments----------
参数:npat
The number of patients to simulate.
模拟的病人数目。
参数:factList
A list containing either functions that will be called or named vectors containing relative proportions, for factors.
一个列表,其中包含任一函数将被调用或命名为向量的相对比例,为的因素。
值----------Value----------
A data.frame with npat rows and one column for each variable given in the factList.
与npat行和一列为factList每个变量的数据框。
作者(S)----------Author(s)----------
RG and VC
举例----------Examples----------
coh1 = list(center=c(C1=.4, C2=.2, C3=.1, C4=.3),
sex=c(Male=.5, Female=.5),
age = function(x) runif(x, min=50, max=70))
simDat = simPats(100, coh1)
simDat[1:5,]
table(simDat[,1])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|