ustemp(SemiPar)
ustemp()所属R语言包:SemiPar
U.S. temperature data
美国温度数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The ustemp data frame has 56 observations on the temperature and location of 56 U.S. cities.
ustemp数据框有56个观察的56个美国城市的温度和位置。
用法----------Usage----------
data(ustemp)
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
citycharacter string giving name of city and state (two-letter abbreviation).
citycharacter提供城市和国家的名称的字符串(两个字母的缩写)。
min.tempaverage minimum January temperature.
min.tempaverage最低月气温。
latitudedegrees latitude (north of Equator).
latitudedegrees纬度(赤道以北)。
longitudedegrees longitude (west of Greenwich).
longitudedegrees经度(格林威治以西)。
源----------Source----------
Peixoto, J.L. (1990). A property of well-formulated polynomial regression models. American Statistician, 44, 26-30.
佩肖托,J.L.(1990)。制定的多项式回归模型的属性。美国统计学家,44,26-30。
参考文献----------References----------
Ruppert, D., Wand, M.P. and Carroll, R.J. (2003)<br> Semiparametric Regression Cambridge University Press.<br> http://stat.tamu.edu/~carroll/semiregbook/
实例----------Examples----------
library(SemiPar)
data(ustemp)
attach(ustemp)
grey.levs <- min.temp+20
col.vec <- paste("grey",as.character(grey.levs),sep="")
plot(-longitude,latitude,col=col.vec,pch=16,cex=3,xlim=c(-130,-60))
text(-longitude,latitude,as.character(city))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|