0
我繪製在R.數據我運行以下兩個命令:如何獲得[R劇情上繪製heat.color規模可變
plot(x = df$Latitude, df$Longitude, col = heat.colors(nrow(df)), type = "p")
plot(x = df$Latitude, df$Longitude, col = df$feature, type = "p")
第一線圖沿着漸變色點(具有較高值的點是紅色,具有較低值的點是黃色),第二行用由features
給出的int值指示的顏色繪製數據。
但是,我想將兩者結合起來,以便使用feature
的數值在刻度上用顏色繪製點。從某種意義上說,我想傳遞兩個參數到col
。我怎樣才能做到這一點?
看看'ggplot2'包 – timat