crime.us(VGAM)
crime.us()所属R语言包:VGAM
Estimated Crime in 2009 in USA
估计于2009年在美国的犯罪
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Crime totals and rates, cross-classified by US state, during 2009.
犯罪总数和价格,交叉分类,由美国的国家,在2009年。
用法----------Usage----------
data(crime.us)
格式----------Format----------
A data frame with 50 observations on the following 22 variables.
50以下22个变量的观察与数据框。
State a character vector. White spaces have been
State字符向量。白色空间已
Population a numeric vector
Population一个数值向量
ViolentCrimeTotal a numeric vector
ViolentCrimeTotal一个数值向量
Murder a numeric vector
Murder一个数值向量
Rape a numeric vector
Rape一个数值向量
Robbery a numeric vector
Robbery一个数值向量
Assault a numeric vector
Assault一个数值向量
PropertyCrimeTotal a numeric vector
PropertyCrimeTotal一个数值向量
Burglary a numeric vector
Burglary一个数值向量
LarcenyTheft a numeric vector
LarcenyTheft一个数值向量
MotorVehicleTheft a numeric vector
MotorVehicleTheft一个数值向量
ViolentCrimeRate a numeric vector
ViolentCrimeRate一个数值向量
MurderRate a numeric vector
MurderRate一个数值向量
RapeRate a numeric vector
RapeRate一个数值向量
RobberyRate a numeric vector
RobberyRate一个数值向量
AssaultRate a numeric vector
AssaultRate一个数值向量
PropertyCrimeRate a numeric vector
PropertyCrimeRate一个数值向量
BurglaryRate a numeric vector
BurglaryRate一个数值向量
LarcenyTheftRate a numeric vector
LarcenyTheftRate一个数值向量
MotorVehicleTheftRate a numeric vector
MotorVehicleTheftRate一个数值向量
stateNumber a numeric vector, running from 1 to 50.
stateNumber一个数值向量,从1到50。
abbrev State name as a character vector
abbrev国家名称的字符向量
Details
详细信息----------Details----------
Each row is a state of the United States of America. The first half of the columns tend to be totals, and the second half are crime rates per 100,000 population.
每行是一个状态美利坚合众国。上半年的列往往是总量,下半年是每10万人口的犯罪率。
The data frame was downloaded as a .csv file and edited. The full column names are: State, Population, Violent crime total, Murder and nonnegligent Manslaughter, Forcible rape, Robbery, Aggravated assault, Property crime total, Burglary, Larceny-theft, Motor vehicle theft, Violent Crime rate, Murder and nonnegligent manslaughter rate, Forcible rape rate, Robbery rate, Aggravated assault rate, Property crime rate, Burglary rate, Larceny-theft rate, Motor vehicle theft rate, state Number, abbreviation. Technical details governing the data set are given in the URL.
作为一个.csv文件和编辑下载的数据框。完整的列名是:国家,人口,暴力犯罪总,谋杀和nonnegligent过失杀人,强奸,抢劫,严重袭击,共有财产犯罪,入室盗窃,盗窃,盗窃,汽车盗窃,暴力犯罪率低,谋杀和误杀率nonnegligent ,强奸,抢劫,严重攻击率,财产犯罪率,爆窃率,盗窃罪,盗窃率,汽车失窃率,状态编号,缩写。在URL中的技术细节数据集。
源----------Source----------
http://www.ucrdatatool.gov, http://www.ucrdatatool.gov/Search/Crime/State/RunCrimeOneYearofData.cfm
http://www.ucrdatatool.gov,http://www.ucrdatatool.gov/Search/Crime/State/RunCrimeOneYearofData.cfm
实例----------Examples----------
## Not run: # Louisiana is the one outlier[#不运行:#路易斯安那州是一个异常值]
plot(MurderRate ~ stateNumber, crime.us,
axes = FALSE, type = "h", col = 1:6,
main = "USA murder rates in 2009 (per 100,000 population)")
axis(1, with(crime.us, abbrev), at = with(crime.us, stateNumber),
col = 1:6, col.tick = 1:6, cex.lab = 0.5)
axis(2)
## End(Not run)[#(不执行)]
tail(crime.us[ sort.list(with(crime.us, MurderRate)), ])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|