Ways to plot 3D variogram

207 Views Asked by At

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.

1

There are 1 best solutions below

0
On

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")

spatial_vario

Then you could save images for each plane (xy, xz, yz).

Hope that helps! Cheers, Sebastian