我正在尝试在地图视图中使用不同的比例主题来帮助可视化收益与损失,其中:
有什么想法吗?
library(tidyverse)
library(mapview)
library(sf)
lat <- rep(34,16)
lon <- seq(-128, -126, length = 16)
value <- c(-1000, -800, -600, -400, -200, -100, -50,
-25, 25, 50, 100, 200, 400, 600, 800, 1000)
#make data.frame
df <- data.frame(lat, lon, value)
#make spatial object for mapview
df <- st_as_sf(df, coords = c("lon", "lat"), crs = 4326) %>%
mutate(value_abs = abs(value)) #value_abs intended for `cex` argument
pal <- mapviewPalette("mapviewSpectralColors") #from mapview doc. example
m <- mapview(df["value"], #sets hover over value as this column
cex = "value", #sets circle diameter scaling on this column
legend = TRUE,
col.regions = pal(100), #closest I found to a red-blue divergent scale
layer.name = "value")
m
换句话说,我希望下面的点图案与左侧对称,作为右侧尺寸的镜像,但左侧为蓝色圆圈,右侧为红色圆圈,并且仍然允许用户通过鼠标悬停查看实际(非绝对)值(例如
-1000
)。
尝试:将
cex = "value"
与 cex = "value_abs"
切换会产生 warning: In min(x) : no non-missing arguments to min; returning Inf
,但不绘制任何点,或者使用 cex = df$value_abs
(无引号),这会产生无色的巨大点。 我不打算需要两个图例 - 只需一个用于圆圈大小或填充,像现在一样显示最小值和最大值,那就太好了。
更新:当前版本的
mapview
(即2.11.2
)似乎存在问题。使用我的解决方案不再绘制点。
你们非常接近。您需要明确引用
df$value_abs
。看下面:
library(tidyverse)
library(mapview)
library(sf)
df <- data.frame(lat=rep(34,16),
lon=seq(-128, -126, length = 16),
value=c(-1000, -800, -600, -400, -200, -100, -50,
-25, 25, 50, 100, 200, 400, 600, 800, 1000))
df <- st_as_sf(df, coords = c("lon", "lat"), crs = 4326) %>%
mutate(value_abs = abs(value))
pal <- mapviewPalette("mapviewSpectralColors")
mapview(df["value"],
cex = df$value_abs/100,
legend = TRUE,
col.regions = pal(100),
layer.name = "value")
由 reprex 包于 2019-06-24 创建(v0.3.0)