remove_highest(dates,
data1,
data2,
maxi)
Removes values of data1, data2 and dates where data1 values are
higher than the given minimum.
-
- Parameters:
dates -
Dates corresponding to the data.
(type=sequence of datetime.datetime)
data1 -
Data from which values higher than mini must be removed
(observations most of the time).
(type=1D numpy.array)
data2
(type=Data where values corresponding to removed value in
data1 are also removed (simulation data).)
maxi -
Maximum value. Dates, elements of data1 and data2
corresponding to values higher than maxi in data1 are
removed.
(type=float)
- Returns:
-
sequence of dates, data1 array and data2 array. Elements
corresponding to values higher than maxi in data1 are not
returned.
(type=sequence of datetime.datetime, 1D numpy.array, 1D
numpy.array)
|