Levelplot不良垂直线:alpha.regions

时间:2018-10-11 12:52:43

标签: r plot

我正在与r合作。我正在尝试绘制一些地图,但是我有一个问题...

如果我执行:

tt_level<- levelplot(tt_para_calcular,useRaster=TRUE,
margin = FALSE, contour = FALSE, 
par.settings = rasterTheme(region = matlab.like(n = 10)), 
col.regions = col_regions, at=my_at,colorkey=myColorkey,
main = nombre_main_a_usar,maxpixels=1000000)
plot(tt_level) 

然后我得到:

enter image description here

之后,我尝试添加一些透明度,因此我执行:

tt_level<- levelplot(tt_para_calcular,useRaster=TRUE,margin = FALSE,
contour = FALSE, par.settings = rasterTheme(region = matlab.like(n = 10)), 
alpha.regions = 0.8,                             
col.regions = col_regions, at=my_at,colorkey=myColorkey,
main = nombre_main_a_usar,maxpixels=1000000)
plot(tt_level) 

然后我得到:

enter image description here

为什么会出现这些垂直线?

我尝试使用大于1000000但小于1000000的maxpixels解决此问题。 值越大,问题仍然存在。

使用较低的值,该问题在200000(消失一位)时消失了,但定义却变少了。在这种情况下,我获得:

enter image description here

这是什么问题?

谢谢

0 个答案:

没有答案