father.son(UsingR)
father.son()所属R语言包:UsingR
Pearson's data set on heights of fathers and their sons
皮尔逊的数据集高度的父亲和他们的儿子
译者:生物统计家园网 机器人LoveR
描述----------Description----------
1078 measurements of a father's height and his son's height.
1078父亲的身高和他的儿子的身高测量。
用法----------Usage----------
data(father.son)
格式----------Format----------
A data frame with 1078 observations on the following 2 variables.
一个数据框,1078以下2个变量的观察。
fheight Father's height in inches
fheight父亲的高度以英寸为单位
sheight Son's height in inches
sheight儿子的身高英寸
Details
详细信息----------Details----------
Data set used by Pearson to investigate regression. See data set galton for data set used by Galton.
数据集使用皮尔逊调查回归。数据集galton高尔顿数据集使用。
源----------Source----------
Read into R by the command
读入R的命令
read.table("http://stat-www.berkeley.edu/users/juliab/141C/pearson.dat",sep=" ")[,-1],
read.table("http://stat-www.berkeley.edu/users/juliab/141C/pearson.dat",sep=" ")[,-1],
as mentioned by Chuck Cleland on the r-help mailing list.
查克莱兰所提到的R-帮助邮件列表。
实例----------Examples----------
data(father.son)
## like cover of Freedman, Pisani, and Purves[想盖弗里德曼,皮萨尼,浦伟士]
plot(sheight ~ fheight, data=father.son,bty="l",pch=20)
abline(a=0,b=1,lty=2,lwd=2)
abline(lm(sheight ~ fheight, data=father.son),lty=1,lwd=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|