attitude(datasets)
attitude()所属R语言包:datasets
The Chatterjee&ndashrice Attitude Data
查特吉的价格姿态数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
From a survey of the clerical employees of a large financial organization, the data are aggregated from the questionnaires of the approximately 35 employees for each of 30 (randomly selected) departments. The numbers give the percent proportion of favourable
从一个大型金融机构的文职雇员的调查,数据汇总的约35名员工的问卷调查,每30个(随机选择)部门。数字%的比例提供有利
用法----------Usage----------
格式----------Format----------
A dataframe with 30 observations on 7 variables. The first column are the short names from the reference, the second one the variable names in the data frame:
30 7变量观察与dataframe。第一列是参考的简短名称,第二个数据框中的变量名:
rating
等级
complaints
投诉
privileges
特权
learning
学习
raises
提高
critical
临界
advancel
advancel
源----------Source----------
Chatterjee, S. and Price, B. (1977) Regression Analysis by Example. New York: Wiley. (Section 3.7, p.68ff of 2nd ed.(1991).)
查特吉,S.和价格,B.(1977)回归分析为例。纽约:Wiley。 (第3.7节,第2版p.68ff。(1991)。)
举例----------Examples----------
require(stats); require(graphics)
pairs(attitude, main = "attitude data")
summary(attitude)
summary(fm1 <- lm(rating ~ ., data = attitude))
opar <- par(mfrow = c(2, 2), oma = c(0, 0, 1.1, 0),
mar = c(4.1, 4.1, 2.1, 1.1))
plot(fm1)
summary(fm2 <- lm(rating ~ complaints, data = attitude))
plot(fm2)
par(opar)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|