特定多面体上的 R 密度图
Posted
技术标签:
【中文标题】特定多面体上的 R 密度图【英文标题】:R density map over a specific multipolygon 【发布时间】:2021-12-22 23:54:51 【问题描述】:我想用下面的代码创建一个热图。
data_smoothed = ggplot() +
metR::geom_contour_fill(data = data.dolphins, aes(x = lon, y = lat, z = density),
bins = 120, na.fill = TRUE)+
coord_sf(xlim = c(-1, 5), ylim = c(37,43))+ #I want to change this
scale_fill_viridis_c() +
metR::scale_x_longitude(ticks = 2)+
metR::scale_y_latitude(ticks=2)+
theme_bw() +
ggtitle("dolphins")+
theme(plot.title = element_text(hjust = 0.5))
返回这个: enter image description here
但是,我不想收到这个,我只想保留热图的这些部分,这些部分属于我已经拥有的多面体。
> poly
Simple feature collection with 1 feature and 0 fields
Geometry type: MULTIPOLYGON
Dimension: XY
Bounding box: xmin: -1 ymin: 37 xmax: 6 ymax: 42.42764
Geodetic CRS: WGS 84
geometry
1 MULTIPOLYGON (((0.5 39.5, 0...
即类似于下面显示的多边形内的热图部分。 enter image description here
有什么想法吗?
【问题讨论】:
【参考方案1】:似乎这个线程做了类似的事情ggplot2/gis Plotting inside polygon area 我过去也使用 sf 包中的 st_intersection() 做过类似的事情,在绘图之前过滤与多边形重叠的数据。
【讨论】:
我以前看过这篇文章。我的数据点实际上在多面体中。所以我认为这更多的是插值问题或如何呈现数据。 我明白了,只需在数据之上绘制多边形就可以实现您想要的外观吗?我不确定我明白你想要什么:) 不,我只想对多边形内的区域进行着色。感谢您的帮助:)以上是关于特定多面体上的 R 密度图的主要内容,如果未能解决你的问题,请参考以下文章
R语言ggplot2可视化绘制二维的密度图:在R中建立二维散点数据的连续密度热图2D密度估计MASS包中的kde2d函数实现2D密度估计geom_density2d函数可视化二维密度图