问题标签 [geom-raster]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
49 浏览

r - geom_raster() 在地图上产生一个白色的表面

我正在尝试在地理地图上绘制热图以显示变量的地理分布。带有荒谬数据的最低工作代码如下:

第一张地图看起来很完美:整齐、干净、线条清晰。 第一张地图

The second one, having added the geom_raster layer, looks (besides wider) slightly blurred, not that crisp. See that the geom_raster line adds a whitish layer ontop of the map (if you look closely it does not even cover it totally). It is absolutely awful and I would like to remove it, or, in other words, I would like it to take a "transparent" colour when the tile produced by geom_raster takes a NA value. 第二张地图

Any ideas?

0 投票
1 回答
62 浏览

r - 为 geom_raster 和 geom_path 添加单独的图例

我正在绘制一个栅格并用两个多边形覆盖它。我想分别为每个 shapefile 绘制图例(即缓冲区图例和每个多边形的一个图例)。我show.legend = TRUE在里面使用过,geom_path但它没有给我想要的东西。我正在使用此代码。

在此处输入图像描述

0 投票
1 回答
10 浏览

ggplot2 - 叠加矩阵图

在我的实验中,每个板有 96 个孔,随着时间的推移,每个孔会产生 5 种不同强度的颜色。我已经研究出如何为每种颜色绘制一个时间矩阵。但我不知道如何叠加所有不同的颜色。

这是一些示例数据。为了简单起见,我只包含了来自 4 个孔的两种颜色。

在此处输入图像描述

在此处输入图像描述

但是是否可以将所有颜色放在同一个图上?