r - 在 R 中绘制二元图

标签 r ggplot2 geospatial raster r-raster

我试图在 R 中的 map 上绘制从栅格数据集获取的两个变量,以生成看起来有点像这样的东西:

enter image description here

但是,理想情况下,我希望从左下角到右上角的比例为灰度(从浅灰色到黑色),从而突出显示两个变量几乎没有差异的区域。

到目前为止,这是我迄今为止使用包 colorplaner 的内容。 :

#load packages
require(raster)
require(colorplaner)
require(ggplot2)


#here's some dummy data
r1<- raster(ncol=10, nrow=10)
set.seed(0)
values(r1) <- runif(ncell(r1))
r2<- raster(ncol=10, nrow=10)
values(r2) <- runif(ncell(r2))

#here I create a grid with which I can  extract information on the raster datasets
grid<-raster(ncol=10, nrow=10)
grid[] <- 1:ncell(grid)
grid.pdf<-as(grid, "SpatialPixelsDataFrame")
grid.pdf$r1<-(extract(r1,grid.pdf))
grid.pdf$r2<-(extract(r2,grid.pdf))

#here I convert the grid to a dataframe for plotting in ggplot2
grid.df<-as.data.frame(grid.pdf)
ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+geom_raster()+scale_fill_colourplane("")

这给了我这个:

enter image description here
这个默认的色阶并不真正适合我的需要 - 我更喜欢一个看起来像这样的色阶,取自 this website :

enter image description here

但是我发现在函数 scale_fill_colourplane 中修改颜色方案很棘手。

我能得到的最接近我想要的色阶是这样的:
ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+
geom_raster()+
scale_fill_colourplane(name = "",na.color = "white",
color_projection = "interpolate",vertical_color = "#FAE30C",
horizontal_color = "#0E91BE", zero_color = "#E8E6F2",
limits_y = c(0,1),limits=c(0,1))

这给了我这个,但这不是我想要的:
enter image description here

有关于如何修改 scale_fill_colourplane 中使用的色阶的信息。功能 here这使我看起来应该能够做我想做的事,但我无法弄清楚。

有谁知道我如何实现我想要的?我愿意使用其他软件包,但更喜欢使用 ggplot2如果可能的话进行绘图,以便该数字与我目前正在制作的其他数字一致。

最佳答案

您可以通过在 HSV 空间中思考来做到这一点。
https://en.wikipedia.org/wiki/HSL_and_HSV

沿 45 度线的距离是值(从亮到暗)。

与该线的距离是饱和度(单色到彩色)

两种不同的颜色只是色调的两种选择。

# hsv
# Position along diagonal is value
# Distance from the diagonal is saturation
# upper triangle or lower triangle is hue.

col_func <- function(x, y){

  x[x == 0] <- 0.000001
  y[y == 0] <- 0.000001
  x[x == 1] <- 0.999999
  y[y == 1] <- 0.999999

  # upper or lower triangle?
  u <- y > x

  # Change me for different hues.
  hue <- ifelse(u, 0.3, 0.8)


  # distace from (0,0) to (x,y)
  hyp <- sqrt(x^2 + y^2) 

  # Angle between x axis and line to our point
  theta <- asin(y / hyp)

  # Angle between 45 degree line and (x,y)
  phi <- ifelse(u, theta - pi/4, pi/4 - theta)
  phi <- ifelse(phi < 0, 0, phi)

  # Distance from 45 degree line and (x,y)
  s <- hyp * sin(phi) / sqrt(2)

  # Draw line from (x, y) to 45 degree line that is at right angles.
  # How far along 45 degree line, does that line join.
  v <- 1 - hyp * cos(phi) / sqrt(2)

  # Get hsv values.
  sapply(seq_along(x), function(i) hsv(hue[i], s[i], v[i]))

}



ggplot(data=grid.df,aes(x,y,fill=r1,fill2=r2))+
  geom_raster()+
  scale_fill_colourplane(name = "",
                         na.color = "white",
                         color_projection = col_func,
                         limits_y = c(0,1),limits=c(0,1))

enter image description here

关于r - 在 R 中绘制二元图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48572744/

相关文章:

r - ggplot2 使用 geom_line 和 geom_smooth 显示图例

R - ggplot 上的背景颜色沿对角线分割?

R:计算从一点到另一点的距离(以英里为单位)

r - 在 ggplot 中设置中断和标签

r - 拆分单个变量数据框

回归线到数据点/如何创建垂直线?

r - 使用 dplyr mutate 的唯一值的 cumsum

r - 如何在ggplot2中抖动线条

geometry - 给定球面系统中的一点,找到与已知线成直角相交的线

java - PostgreSQL:遇到无效的字节序标志值