I am trying to plot 3D variogram of porosity taking X and Y as coordinates and z as time. Can someone help me out to find a way to plot 3D variogram?
I have tried with GSTools, pykridge, GStat.
I am trying to plot 3D variogram of porosity taking X and Y as coordinates and z as time. Can someone help me out to find a way to plot 3D variogram?
I have tried with GSTools, pykridge, GStat.
GSTools developer here. GSTools provides plotting routines for spatial variograms (documentation example)
import gstools as gs
model = gs.Gaussian(dim=3, var=2.0, len_scale=[10, 2], angles=2.5)
model.plot("vario_spatial")
Then you could save images for each plane (xy, xz, yz).
Hope that helps! Cheers, Sebastian