autism(WWGbook)
autism()所属R语言包:WWGbook
autism data in Chapter 6
自闭症在第6章中的数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The data comes from researchers at the University of Michigan as part of a prospective longitudinal study of 214 children.
数据来自在美国密歇根大学的研究人员的214名儿童的前瞻性纵向研究的一部分。
用法----------Usage----------
data(autism)
格式----------Format----------
A data frame with 612 observations on the following 4 variables.
612观察以下4个变量的数据框。
age : Age in years (2, 3, 5, 9, 13); the time variable
年龄:年龄在几年的时间(2,3,5,9,13);变量
vsae : Vineland Socialization Age Equivalent: parent-reported socialization, the dependent variable measured at each age
vsae:Vineland的社会年龄相当于:父母报告的社会,在每个年龄段的测量因变量
sicdegp : Sequenced Inventory of Communication Development Expressive Group: categorized expressive language score at age 2 years (1 = Low, 2 = Medium, 3 = High)
sicdegp:顺序库存通信发展表达组:分为在2岁时的语言表达评分(1 =低,2 =中,3 =高)
childid : Unique child identifier
childid:唯一的孩子标识符
参考文献----------References----------
Developmental Psychopathology (under review), 2006.
Chapman Hall / CRC Press, first edition, 2006.
实例----------Examples----------
attach(autism)
sicdegp.f <- factor(sicdegp)
age.f <- factor(age)
detach(autism)
# Add the new variables to a new data frame object.[将新的变量添加到一个新的数据框的对象。]
autism.updated <- data.frame(autism, sicdegp.f, age.f)
dim(autism.updated)
names(autism.updated)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|