Is there a quick way of replacing all NaN values in a numpy array with (say) the linearly interpolated values?
For example,
[1 1 1 nan nan 2 2 nan 0]
would be converted into
[1 1 1 1.3 1.6 2 2 1 0]
|
Is there a quick way of replacing all NaN values in a numpy array with (say) the linearly interpolated values? For example,
would be converted into
|
|||
|
|
|
Lets define first a simple helper function in order to make it more straightforward to handle indices and logical indices of NaNs:
Now the
---
it will eventually pay dividends. So, when ever you are working with NaNs related data, just encapsulate all the (new NaN related) functionality needed, under some specific helper function(s). Your code base will be more coherent and readable, because it follows easily understandable idioms. Interpolation, indeed, is a nice context to see how NaN handling is done, but similar techniques are utilized in various other contexts as well. |
||||
|
|
|
I came up with this code:
It prints
|
|||
|
|
|
It might be easier to change how the data is being generated in the first place, but if not:
Create a boolean array indicating where the nans are
Create a boolean array indicating where the good values area
A restricted version of the original data excluding the nans
Run all the bad indexes through interpolation
Replace the original data with the interpolated values. |
|||||||
|
|
Just use numpy logical and there where statement to apply a 1D interpolation.
|
|||
|
|
|
Or building on Winston's answer
Result
|
|||
|
|