Hi! I was trying out this library and I can't seem to plot the well data when using it in a script (in jupyter notebook works).
By following the documentation both
from welly import Well
well = Well.from_las('./data/A10.las')
perm = well.data['PERM']
perm.plot()
and
from welly import Well
well = Well.from_las('./data/A10.las')
well.plot()
should work.
For me it does not work, the plots do not show up and the script terminates without any errors. Am I doing something wrong?
Thanks!