ptitanic(rpart.plot)
ptitanic()所属R语言包:rpart.plot
Titanic data with passenger names and other details removed.
泰坦尼克号乘客的姓名和其他细节的数据删除。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Titanic data with passenger names and other details removed.
泰坦尼克号乘客的姓名和其他细节的数据删除。
格式----------Format----------
A data frame with 1046 observations on 6 variables.
1046观察6个变量的数据框。
passenger class, unordered factor: 1st 2nd 3rd
乘客类,无序的因素:第一第二名第三名
factor: died or survived
因素:死亡或存活
unordered factor: male female
无序的因素:男女
age in years, min 0.167 max 80.0
年龄在岁,最小0.167最高80.0
number of siblings or spouses aboard, integer: 0...8
的父母,兄弟姐妹或配偶船上,整数数:0 ... 8
number of parents or children aboard, integer: 0...6
船上,整数的父母或孩子的数量:0 ... 6
源----------Source----------
The dataset was compiled by Frank Harrell and Robert Dawson:<br> http://biostat.mc.vanderbilt.edu/twiki/pub/Main/DataSets/titanic.html.
该数据集被编译的弗兰克·哈勒尔和罗伯特·道森:http://biostat.mc.vanderbilt.edu/twiki/pub/Main/DataSets/titanic.html参考。
See also:<br> http://biostat.mc.vanderbilt.edu/twiki/pub/Main/DataSets/titanic3info.txt.
见也:<BR> http://biostat.mc.vanderbilt.edu/twiki/pub/Main/DataSets/titanic3info.txt。
For this version of the Titanic data, passenger details were deleted, survived was cast as a factor, and the name changed to ptitanic to minimize confusion with other versions.
对于此版本的泰坦尼克号的数据,乘客详细信息被删除,survived转换为一个factor和ptitanic以减少混乱与其他版本的名称改为。
In this data the crew are conspicuous by their absence.
在此数据的船员是引人注目地缺席。
Contents of ptitanic:
内容ptitanic:
实例----------Examples----------
data(ptitanic)
summary(ptitanic)
# main indicator of missing data is 3rd class esp. with many children[丢失的数据的主要指标是第三类ESP。有许多孩子]
obs.with.nas <- rowSums(is.na(ptitanic)) > 0
prp(rpart(obs.with.nas~., data=ptitanic, method="class"),
main="observations with missing data", extra=7)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|