当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R state 美国各州的事实和数据


R语言 state 位于 datasets 包(package)。

说明

与美利坚合众国 50 个州相关的数据集。

用法

state.abb
state.area
state.center
state.division
state.name
state.region
state.x77

细节

R当前包含以下“state”数据集。请注意,所有数据均按照州名称的字母顺序排列。

state.abb

州名 2 字母缩写的字符向量。

state.area

州面积的数值向量(以平方英里为单位)。

state.center

包含名为 xy 的组件的列表,以负经度和纬度给出每个州的大致地理中心。阿拉斯加和夏威夷位于西海岸附近。请参阅“示例”了解如何“correct”。

state.division

factor 提供州划分(新英格兰、中大西洋、南大西洋、中东南部、中西南、中东北部、中西北、山区和太平洋)。

state.name

给出完整州名称的字符向量。

state.region

factor 给出每个州所属的区域(东北部、南部、中北部、西部)。

state.x77

具有 50 行和 8 列的矩阵,在相应列中给出以下统计数据。

Population

截至 1975 年 7 月 1 日的人口估计

Income

人均收入(1974年)

Illiteracy

文盲率(1970 年,占人口百分比)

Life Exp

预期寿命(1969-71)

Murder

每10万人的谋杀和非过失杀人率(1976年)

HS Grad

high-school 毕业生百分比(1970 年)

Frost

首都或大城市最低气温低于冰点的平均天数(1931-1960)

Area

土地面积(平方英里)

请注意,根据定义,一平方英里恰好是 (cm(1760 * 3 * 12) / 100 / 1000)^2 ,即

例子

(dst <- dxy <- data.frame(state.center, row.names=state.abb))
## Alaska and Hawaii are placed just off the West Coast (for compact map drawing):
dst[c("AK", "HI"),]
## state.center2 := version of state.center with "correct" coordinates for AK & HI:
## From https://pubs.usgs.gov/gip/Elevations-Distances/elvadist.html#Geographic%20Centers
##   Alaska   63°50' N., 152°00' W., 60 miles northwest of Mount McKinley
##   Hawaii   20°15' N., 156°20' W., off Maui Island
dxy["AK",] <- c(-152.  , 63.83) # or  c(-152.11, 65.17)
dxy["HI",] <- c(-156.33, 20.25) # or  c(-156.69, 20.89)
state.center2 <- as.list(dxy)

plot(dxy, asp=1.2, pch=3, col=2)
text(state.center2, state.abb, cex=1/2, pos=4, offset=1/4)
i <- c("AK","HI")
do.call(arrows, c(setNames(c(dst[i,], dxy[i,]), c("x0","y0", "x1","y1")),
                  col=adjustcolor(4, .7), length=1/8))
points(dst[i,], col=2)
if(FALSE) { # if(require("maps")) {
   map("state", interior = FALSE,          add = TRUE)
   map("state", boundary = FALSE, lty = 2, add = TRUE)
}

来源

美国商务部人口普查局 (1977) 美国统计摘要。

美国商务部人口普查局 (1977) 县和城市数据手册。

参考

Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 US State Facts and Figures。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。