galileo(UsingR)
galileo()所属R语言包:UsingR
Galileo data on falling bodies
伽利略落体上的数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data recorded by Galileo in 1609 during his investigations of the trajectory of a falling body.
在1609年由伽利略的落体的运动轨迹在他的调查,记录的数据。
用法----------Usage----------
data(galileo)
格式----------Format----------
A data frame with 7 observations on the following 2 variables.
观察以下2个变量的数据框。
init.h Initial height of ball
:init.h初始高度球
h.d Horizontal distance traveled
h.d水平距离
Details
详细信息----------Details----------
A simple ramp 500 punti above the ground was constructed. A ball was placed on the ramp at an indicated height from the ground and released. The horizontal distance traveled is recorded (in punti). (One punto is 169/180 millimeter, not a car by FIAT.)
构建一个简单的斜坡,地面以上500本地人。一个球被放置在指定的坡道上离地面的高度和释放。水平距离被记录(在本地话)。 (一PUNTO是一百八十分之一百六十九毫米,而不是由菲亚特的汽车。)
源----------Source----------
This data and example come from the Statistical Sleuth by Ramsay and Schafer, Duxbury (2001), section 10.1.1. They attribute an article in Scientific American by Drake and MacLachlan.
这些数据和统计猎犬的例子来自拉姆齐和Schafer,达克斯伯里(2001年),第10.1.1节。他们认为“科学美国人”的一篇文章中,德雷克和麦克拉克伦。
实例----------Examples----------
data(galileo)
polynomial = function(x,coefs) {
sum = 0
for(i in 0length(coefs)-1)) {
sum = sum + coefs[i+1]*x^i
}
sum
}
res.lm = lm(h.d ~ init.h, data = galileo)
res.lm2 = update(res.lm, . ~ . + I(init.h^2), data=galileo)
res.lm3 = update(res.lm2, . ~ . + I(init.h^3), data=galileo)
plot(h.d ~ init.h, data = galileo)
curve(polynomial(x,coef(res.lm)),add=TRUE)
curve(polynomial(x,coef(res.lm2)),add=TRUE)
curve(polynomial(x,coef(res.lm3)),add=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|