找回密码
 注册
查看: 266|回复: 0

R语言 UsingR包 galileo()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 14:09:45 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-27 22:21 , Processed in 0.031981 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表