Employment(vcd)
Employment()所属R语言包:vcd
Employment Status
就业状况
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data from a 1974 Danish study given by Andersen (1991) on the employees who had been laid off. The workers are classified by their employment status on 1975-01-01, the cause of their layoff and the length of employment before they were laid off.
安徒生(1991)已下岗的员工,从1974年丹麦的研究数据。工人们正在他们的就业状况分类1975-01-01,其裁员的原因,用人之长,才下岗的。
用法----------Usage----------
data("Employment")
格式----------Format----------
A 3-dimensional array resulting from cross-tabulating variables for 1314 employees. The variables and their levels are as follows:
一个3维数组造成的交叉制表为1314名员工的变量。变量和它们的水平如下:
Name
名称
EmploymentStatus
EmploymentStatus
EmploymentLength
EmploymentLength
LayoffCause
LayoffCause
源----------Source----------
Michael Friendly (2000), Visualizing Categorical Data, pages 126–129.
队友迈克尔(2000年),可视化分类数据,页126-129。
参考文献----------References----------
The Statistical Analysis of Categorical Data. Springer-Verlag, Berlin.
Visualizing Categorical Data. SAS Institute, Cary, NC.
实例----------Examples----------
data("Employment")
## Employment Status[#就业状况]
mosaic(Employment,
expected = ~ LayoffCause * EmploymentLength + EmploymentStatus,
main = "Layoff*EmployLength + EmployStatus")
mosaic(Employment,
expected = ~ LayoffCause * EmploymentLength + LayoffCause * EmploymentStatus,
main = "Layoff*EmployLength + Layoff*EmployStatus")
## Stratified view[#分层视图]
grid.newpage()
pushViewport(viewport(layout = grid.layout(ncol = 2)))
pushViewport(viewport(layout.pos.col = 1))
## Closure[#关闭]
mosaic(Employment[,,1], main = "Layoff: Closure", newpage = FALSE)
popViewport(1)
pushViewport(viewport(layout.pos.col = 2))
## Replaced[#换成]
mosaic(Employment[,,2], main = "Layoff: Replaced", newpage = FALSE)
popViewport(2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|