We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. this doesn't work:
w = Well.from_las('data/P-129_out.LAS') gr = w.data['GR'] # This works: gr.plot_2d(cmap='viridis', curve=True, lw=0.3, edgecolor='k') # This doesn't: (200 - gr).plot_2d(cmap='viridis', curve=True, lw=0.3, edgecolor='k')
Should be easy enough to fix with __neg__() and __pos__() I think.
__neg__()
__pos__()
The text was updated successfully, but these errors were encountered:
Do you mean here that (200-gr) is not working properly?
(200-gr)
curve = well.data['GR'] curve2 = 200-curve arr1 = curve.df.to_numpy() arr3 = arr1-200 arr2 = curve2.df.to_numpy() all(arr2 == arr3) Out[11]: True
Sorry, something went wrong.
No branches or pull requests
E.g. this doesn't work:
Should be easy enough to fix with
__neg__()
and__pos__()
I think.The text was updated successfully, but these errors were encountered: