Patrick Reinhard

Results 7 comments of Patrick Reinhard

Could you share the reproduction steps of this bug, which file is this? What is the expected output? If I run `tests/test_curve_2d_plot()` I get: ![image](https://user-images.githubusercontent.com/59961184/148807822-df590172-a647-4e3c-ab26-d3d7059f2c42.png) And if I load P-129_out.LAS,...

This also happens in `0.4.10`, it has to do with the position when clipping the `imshow` : ![image](https://user-images.githubusercontent.com/59961184/148901763-6d1e479c-f6c5-4053-a7a2-b171f8e8a913.png). The extend of the imshow needs to be from `min(curve_data)` up to...

@ThomasMGeo could you share a the reproduction steps that lead you to this error?

If we go ahead with this, would we like to support a way that you can still export with the original index mnemonic (e.g. `DEPT`) ?

Do you mean here that `(200-gr)` is not working properly? ``` python curve = well.data['GR'] curve2 = 200-curve arr1 = curve.df.to_numpy() arr3 = arr1-200 arr2 = curve2.df.to_numpy() all(arr2 == arr3)...

Hi Matt, Thanks for putting some thought into this. Sharing my thoughts: > * There's no Header object to take care of the header interface, so you have to know...

> Note: to change the active backend you can do: > > ```python > from joblib import parallel_backend > > parallel_backend("threading") > # my code here > ``` > >...