Ricardo,

Here is the basic idea of directly writing a plot to a pdf file:

x <- runif(100)
y <- runif(100)

pdf()
plot(x,y)
abline(0, 1, col='blue')
dev.off()


See ?pdf for more info.

Robert

On Fri, Oct 1, 2010 at 8:58 PM, Ricardo Rodríguez
<ricardorodo...@gmail.com> wrote:
> hi all, how I can create maps in pdf files directly in R with raster that
> are a result of interpolations gstat additionally as I can reclassify these
> raster files, I'm working script for the interpolation of points and values
> driving this from scratch to higher than 5, you can create a range of 10
> items for the classification of files.
>
> thank you all for your time and help
>
> Ricardo Rodríguez
> Univalle
>
>        [[alternative HTML version deleted]]
>
>
> _______________________________________________
> R-sig-Geo mailing list
> R-sig-Geo@stat.math.ethz.ch
> https://stat.ethz.ch/mailman/listinfo/r-sig-geo
>
>

_______________________________________________
R-sig-Geo mailing list
R-sig-Geo@stat.math.ethz.ch
https://stat.ethz.ch/mailman/listinfo/r-sig-geo

Reply via email to