Skip to content

2-D Scatter Plots from the Image

2 messages · Gaspar Reyes Póndigo, Paul Hiemstra

#
Hi, Dear list 

I have one question:

How to make 2-D Scatter Plots from the Image (p.e. landsat band 4 vs 3) in R, is it possible?


------------------------------
Gaspar Reyes P?ndigo
Universidad del Mar, Oaxaca, M?xico
Campus Puerto-?ngel
Carretera principal Puerto ?ngel Zipolite km 1.5 
C.P. 70902
3 days later
#
On 05/26/2011 02:54 PM, Gaspar Reyes P?ndigo wrote:
Hi,

Take a look at any of the plotting packages in R: the standard plotting,
lattice or ggplot (I prefer the latter). Using the standard plotting
facilities:

library(gstat)
loadMeuse()
plot(meuse.grid$dist, meuse.grid$soil)

cheers,
Paul