fuel.frame(SemiPar)
fuel.frame()所属R语言包:SemiPar
Automobile data from consumer reports
从消费者报告汽车数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The fuel.frame data frame contains data on 5 variables (columns) for 117 cars (rows).
fuel.frame数据框包含5个变量(列)117辆(列)的数据。
用法----------Usage----------
data(fuel.frame)
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
car.namecharacter variable giving the name (make) of the car
car.namecharacter变量的名称(使)的汽车
Weightthe weight of the car in pounds.
Weightthe车停在磅的重量。
Disp.the engine displacement in litres.
Disp.the中升的发动机排量。
Mileagegas mileage in miles/gallon.
英里/加仑Mileagegas里程。
Fuela derived variable concerning fuel efficiency.
Fuela衍生变量的燃油效率。
Typea factor giving the general type of car. The levels are: Small ,Sporty , Compact , Medium , Large , Van.
A型因素一般类型的汽车。级别有:体积小,运动,紧凑型,中型,大型,范。
源----------Source----------
Consumer Reports, April, 1990, pp. 235-288.
消费者报告日,1990年,第235-288页。
参考文献----------References----------
Chambers, J.M. and Hastie, T.J. (eds.) (1992)<br> Statistical Models in S.<br> Wadsworth and Brooks, Pacific Grove, California.
实例----------Examples----------
library(SemiPar)
data(fuel.frame)
pairs(fuel.frame)
par(mfrow=c(2,2))
fuel.fit <- lm(Fuel ~ Weight + Disp.,fuel.frame)
plot(fuel.fit,ask=FALSE)
par(mfrow=c(1,1))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|