MSA(UScensus2000)
MSA()所属R语言包:UScensus2000
Selects one MSA from a given state.
选择一个MSA从一个给定的状态。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
MSA allows the user to pull out the polygon and metadata of one MSA from any given state for any of three levels: tract, blockgroup, or block.
MSA允许用户从任何给定的状态拉出的多边形和元数据的一个MSA为任何三个层次:道,BlockGroup的,或块。
用法----------Usage----------
MSA(msafips = NULL, msaname = NULL, state=NULL , statefips=FALSE, level = c("tract", "blk", "blkgrp"), proj = NULL)
参数----------Arguments----------
参数:msafips
a character string, takes a four digit MSA FIPS code (e.g. "0040" of Texas)
一个字符串,需要一个四位数的MSA FIPS代码(例如“0040”德州)
参数:msaname
a character string, this can either be in conjunction with the variable state or not. Case 1: Full MSA name (state should be left NULL in this case) (e.g. "Abilene, TX MSA"); this must be exact. Case 2: takes one of the city names of the MSA and the one of the states which contain the MSA (e.g. msaname="Albany" and state= "NY").
一个字符串,这可以是与变量state或不结合。案例1:全的MSA名(state应留NULL在这种情况下)(例如,“德克萨斯州阿比林,MSA”),这必须是准确的。案例2:以城市名称的MSA和其中包含的MSA(如:msaname=“奥尔巴尼”和state=“NY”)的国家之一。
参数:state
a character string, this takes in a state abbreviation in capitals in conjunction with msaname, see above for more details.
一个字符串,这需要结合msaname了解更多的细节,请参阅在首都状态的缩写。
参数:statefips
logical, by default statefips=FALSE, change to TRUE when providing state with a FIPS code.
逻辑,默认情况下,statefips=FALSE,TRUE提供state用FIPS代码更改。
参数:level
a character string, takes in one of three values: "tract", "blk", or "blkgrp". This defines the geographic level of data for the MSA.
一个字符串,需要在以下三个值之一:“道”,“大牌”,或“blkgrp”。这个定义的GEO数据的MSA。
参数:proj
CRS-class, takes a CRS object (e.g. CRS("+proj=utm +zone=10 +datum=NAD83") ); This is simply a wrapper for the spTransform function in rgdal . WARNING requires rgdal package.
CRS-级,需要CRS对象(如CRS(“+ PROJ = UTM +区域= 10 +基准= NAD83”)),这是一个简单的spTransform在rgdal函数的包装。警告需要rgdal包。
值----------Value----------
An object of class SpatialPolygonsDataFrame.
对象的类SpatialPolygonsDataFrame。
警告----------Warning ----------
You must have the packages UScensus2000blkgrp and UScensus2000blk installed to use levels "blkgrp" and "blk" respectively.
您必须拥有的包UScensus2000blkgrp和UScensus2000blk安装使用水平“blkgrp”和“BLK”。
(作者)----------Author(s)----------
Zack W. Almquist <a href="mailto:almquist@uci.edu">almquist@uci.edu</a>
参考文献----------References----------
Bureau, 2001. <br> http://www.census.gov/prod/cen2000/doc/sf1.pdf
参见----------See Also----------
county
county
实例----------Examples----------
## Load the data files for MSA names and MSA FIPS codes[#加载数据文件为MSA的名称和MSA FIPS代码]
data(MSAnames)
data(MSAfips)
## Save the FIPS code for Abilene, TX MSA[#保存FIPS代码德克萨斯州阿比林,MSA]
ab.fips<-MSAfips$msa.cmsa.fips[1]
###Use the MSA FIPS code[##使用MSA FIPS代码]
Abilene<-MSA(msafips=ab.fips,level="tract")
###USe the MSA full name[##使用MSA的全名]
Abilene<-MSA(msaname="Abilene, TX MSA",level="tract")
##Use the msaname alternative[#使用替代的msaname]
portland<-MSA(msaname="Portland",state="OR",level="tract")
##Plot Portland[#图波特兰]
plot(portland)
title("Portland MSA, OR 2000")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|