绘制密度图

时间:2018-06-29 10:58:33

标签: r heatmap density-plot spatstat

我正在使用spatstat中的长叶数据,其中附在每个点图案上的标记是树木的直径。我创建了数据的密度色图。但是,我希望将颜色映射为与树木的直径有关,而不是与树木的密度有关的颜色。

对于长叶数据的密度色图图,我已经有了,并已附上该图。

plot(density(longleaf))
plot(longleaf,add=TRUE,main=NULL,axes=TRUE)

enter image description here

1 个答案:

答案 0 :(得分:0)


spatstat函数Smooth()(注意大写S)使 在空间中标记值:

library(spatstat)
plot(Smooth(longleaf), main = "Smoothed tree diameters.")
plot(longleaf, add = TRUE)