I draw multiple columns of a large data array (via numpy.genfromtxt) with the same time column. Missing data is often referred to as nan, -999, -9999, etc. However, I cannot figure out how to remove multiple values from an array. This is what I have now:
for cur_col in range(start_col, total_col):
# Generate what is to be graphed by removing nan values
data_mask = (file_data[:, cur_col] != nan_values)
y_data = file_data[:, cur_col][data_mask]
x_data = file_data[:, time_col][data_mask]
After which I use matplotlib to create the corresponding numbers for each column. This works fine if nan_values is a single integer, but I'm looking for a list.
EDIT: Here is a working example.
import numpy as np
file_data = np.arange(12.0).reshape((4,3))
file_data[1,1] = np.nan
file_data[2,2] = -999
nan_values = -999
for cur_col in range(1,3):
data_mask = (file_data[:, cur_col] != nan_values)
y_data = file_data[:, cur_col][data_mask]
x_data = file_data[:, 0][data_mask]
print 'y: ' + str(y_data)
print 'x: ' + str(x_data)
print file_data
>>> y: [ 1. nan 7. 10.]
x: [ 0. 3. 6. 9.]
y: [ 2. 5. 11.]
x: [ 0. 3. 9.]
[[ 0. 1. 2.]
[ 3. nan 5.]
[ 6. 7. -999.]
[ 9. 10. 11.]]
This will not work if nan_values = ['nan', -999], which is what I want to accomplish.
source
share