我正在繪製兩個柵格數據,生成下面的圖像。兩個柵格之間的散點圖,給出第三個柵格的顏色
我想用第三個柵格數據(具有相同的bbox,像素大小等)的變量對圖中的每個點進行着色。 來自R-Users的任何想法?這個操作非常容易繪製數據集的數據,但我不知道柵格...
在這裏我附上了代碼(簡化了,我認爲你不需要所有的繪圖參數,比如abline,xlab等等上)產生的圖像:
plot(mask(raster1, my_mask,maskvalue=0), #first raster, masked by my_mask
mask(raster2, my_mask,maskvalue=0), #second raster, masked by my_mask
col = alpha('black', 0.1), #the current color scheme
)
raster3 #raster with categorical variable,
#that should give the colors to the points in the graph
非常感謝!
從本質上說,你要在不同的(具體點嗎?)顏色從第三格柵覆蓋只是點? – 2014-10-02 08:18:32
嗨羅馬,確切地說。顏色應該來自第三個柵格的柵格值。 第三個柵格有少數數字(約五個)。 – FraNut 2014-10-02 09:28:23
你可以製作一個可重現的例子嗎? – 2014-10-02 10:48:55