aircraft(robustbase)
aircraft()所属R语言包:robustbase
Aircraft Data
飞机数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Aircraft Data, deals with 23 single-engine aircraft built over the years 1947-1979, from Office of Naval Research. The dependent variable is cost (in units of \$100,000) and the explanatory variables are aspect ratio, lift-to-drag ratio, weight of plane (in pounds) and maximal thrust.
飞机数据,处理23单引擎飞机,在1947年至1979年,海军研究办公室。因变量是成本(在单位\100000美元,)和解释变量是高宽比,升阻比,飞机的重量(磅)和最大推力。
用法----------Usage----------
data(aircraft)
格式----------Format----------
A data frame with 23 observations on the following 5 variables.
23以下5个变量的观察数据框。
X1 Aspect Ratio
X1长宽比
X2 Lift-to-Drag Ratio
X2电梯阻比
X3 Weight
X3重量
X4 Thrust
X4推力
Y Cost
Y成本
源----------Source----------
P. J. Rousseeuw and A. M. Leroy (1987) Robust Regression and Outlier Detection; Wiley, page 154, table 22.
PJ Rousseeuw和AM乐华(1987)稳健回归和孤立点检测; Wiley出版社,第154页,表22。
实例----------Examples----------
data(aircraft)
summary( lm.airc <- lm(Y ~ ., data = aircraft))
summary(rlm.airc <- MASS::rlm(Y ~ ., data = aircraft))
aircraft.x <- data.matrix(aircraft[,1:4])
c_air <- covMcd(aircraft.x)
c_air
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|