Skip to content

Increasing resolution of stkrige maps

3 messages · sara osama, David L Carlson

#
Dear all
I have created interpolated maps using stkrige in gstat but when copying it
and paste in word file the resolution  is not good enough is there any way
to increase the resolution of the created maps in R

Thanks in advance
Sara
#
There is no stkrige() function in package gstat. Do you mean krigeST()?

You have many options in R for producing plots and charts in various formats and resolutions depending on your operating system:
will give you more details for your specific operating system. For example,

pdf("MyFigure.pdf")
plot(. . .)
dev.off()

will produce a .pdf file in your current directory. You have control over the size and resolution of the plot and whether it should be vector or raster.

-------------------------------------
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77840-4352

-----Original Message-----
From: R-sig-Geo [mailto:r-sig-geo-bounces at r-project.org] On Behalf Of sara osama
Sent: Tuesday, June 13, 2017 1:26 PM
To: r-sig-geo at r-project.org
Subject: [R-sig-Geo] Increasing resolution of stkrige maps

Dear all
I have created interpolated maps using stkrige in gstat but when copying it
and paste in word file the resolution  is not good enough is there any way
to increase the resolution of the created maps in R

Thanks in advance
Sara


_______________________________________________
R-sig-Geo mailing list
R-sig-Geo at r-project.org
https://stat.ethz.ch/mailman/listinfo/r-sig-geo
#
Thank you so much dr. Carlson I will try this I think it might help
On 13 Jun 2017 22:00, "David L Carlson" <dcarlson at tamu.edu> wrote: