toddheitmann / PetroPy

A petrophysics python package for geoscience python computing of conventional and unconventional formation evaluation. Reads las files and creates a pandas dataframe of the log data. Includes a basic petrophysical workflow and a simple log viewer based on XML templates.
https://toddheitmann.github.io/PetroPy/
MIT License
177 stars 66 forks source link

setting size of the logviewer messes up the header section #5

Open thoth291 opened 5 years ago

thoth291 commented 5 years ago

Here is what I did:

import petropy as ptr
log = ptr.log_data('WFMP')
# create LogViewer with 'raw' template
viewer = ptr.LogViewer(log,top = 6900, height= 2000)
viewer.fig.set_size_inches(11,30)
viewer.show() # diplay log data

And here is what I got: image As you can see GAMMA RAY is on top of GR - and etc...

Could you please help to debug this? Thanks in Advance!