Zurich.dat(spBayes)
Zurich.dat()所属R语言包:spBayes
Zurichberg Forest inventory data
苏黎世堡的森林资源清查资料
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Inventory data of the Zurichberg Forest, Switzerland (see Mandallaz 2008 for details). These data are provided with the kind authorization of the Forest Service of the Caton of Zurich.
库存数据的苏黎世堡的森林,瑞士(2008年Mandallaz)。这些数据提供的那种卡顿苏黎世林务局授权。
This dataset holds the coordinates for all trees in the Zurichberg Forest. Species (SPP), basal area (BAREA) diameter at breast height (DBH), and volume (VOL) are recorded for each tree. See species codes below.
该数据集保存Zurichberg旅游森林中所有的树的坐标。物种(SPP),每棵树断面积(巴里亚)在胸高直径(DBH)和体积(VOL)。种以下代码。
用法----------Usage----------
data(Zurich.dat)
格式----------Format----------
A data frame containing 4954 rows and 6 columns.
一个数据框包含4954行6列。
实例----------Examples----------
## Not run: [#不运行:]
data(Zurich.dat)
coords <- Zurich.dat[,c("X_TREE", "Y_TREE")]
spp.name <- c("beech","maple","ash","other broadleaves",
"spruce","silver fir", "larch", "other coniferous")
spp.col <- c("yellow","red","orange","pink",
"green","dark green","black","gray")
plot(coords, col=spp.col[Zurich.dat$SPP+1],
pch=19, cex=0.5, ylab="Northing", xlab="Easting")
legend.coords <- c(23,240)
legend(legend.coords, pch=19, legend=spp.name,
col=spp.col, bty="n")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|