r-spatial / gstat

Spatial and spatio-temporal geostatistical modelling, prediction and simulation
http://r-spatial.github.io/gstat/
GNU General Public License v2.0
195 stars 49 forks source link

plot of variogram is not responding #52

Closed pkageliza closed 4 years ago

pkageliza commented 4 years ago

I am closely following up on comments here to solve some of the global issues I am experiencing while using R.

This time I am not able to plot my variogram since R is not responding. I reloaded and even went further to restart but the command for the plot is not responding. Kindly assist

I have 12372 objects

dose_vgm <- variogram(dose ~ 1, mrima_sp, cloud = TRUE)

plot(dose_vgm)

Nowosad commented 4 years ago

@pkageliza 12,372 objects result in 76,527,006 pairs of points. The variogram() function with cloud=TRUE tries to plot all of them (that's a lot). Do you really need a variogram cloud? Do the function works with cloud=FALSE?

pkageliza commented 4 years ago

Thank you Nowasad. I am using a training template to implement my work as I try to read through some literature. Let me rerun it with cloud=False and I will provide a feedback

pkageliza commented 4 years ago

The function works with cloud=FALSE Thank you