如何在不创建断点的情况下更改连续图例?

问题描述 投票:0回答:0

Raster plot

我试过这个:

min_val <- -15000
max_val <- 0

plot(r, col = rev(terrain.colors(10)), at = seq(min_val, max_val, length.out = 11))

但它只会创建断点。

这也不起作用:

plot(chbio01c, range=c(-20000, 0))

它给出了一个空白图。

r plot raster terra
© www.soinside.com 2019 - 2024. All rights reserved.