forked from 3jane/numpy_ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
417 lines (357 loc) · 11.3 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import pytest
import numpy as np
import pandas as pd
import numpy_ext as npext
@pytest.fixture(params=[1, 2, -1])
def n_jobs(request):
return request.param
@pytest.fixture(params=[2, 3, 4, 5, 6])
def expanding_window(request):
return request.param
@pytest.fixture(params=[np.max, np.min, np.sum])
def expanding_func(request):
return request.param
@pytest.fixture(params=[npext.rolling_apply, npext.expanding_apply])
def apply(request):
return request.param
@pytest.mark.parametrize(
'input_arr, res_arr',
[
(np.array([1, np.nan, 3]), np.array([1., 3.])),
(np.array([]), np.array([])),
(np.array([3, 0]), np.array([3, 0]))
]
)
def test_dropna(input_arr, res_arr):
assert np.array_equal(
npext.drop_na(input_arr), res_arr
)
@pytest.mark.parametrize(
'input_arr, value, res_arr',
[
(np.array([1, 2, 3]), 0, np.array([1, 2, 3])),
(np.array([1, 2, np.nan, 3]), 0, np.array([1, 2, 0, 3])),
(np.array([1, 2, np.nan, 3, np.inf]), 0, np.array([1, 2, 0, 3, np.inf])),
]
)
def test_fillna(input_arr, value, res_arr):
assert np.array_equal(
npext.fill_na(input_arr, value), res_arr
)
@pytest.mark.parametrize(
'input_arr, value, res_arr',
[
(np.array([1, 2, 3]), 0, np.array([1, 2, 3])),
(np.array([1, 2, np.nan, 3]), 0, np.array([1, 2, 0, 3])),
(np.array([1, 2, np.nan, 3, np.inf]), 0, np.array([1, 2, 0, 3, 0])),
]
)
def test_fillnotfinite(input_arr, value, res_arr):
assert np.array_equal(
npext.fill_not_finite(input_arr, value), res_arr
)
def test_prepandna():
array = np.array([1, 2.5, 0, 1, 3])
res = npext.prepend_na(array, 5)
assert res.size == array.size + 5
assert np.isnan(res[:5]).all()
assert np.array_equal(res[5:], array)
def test_prepandna_empty():
array = np.array([])
res = npext.prepend_na(array, 5)
assert res.size == 5
assert np.isnan(res).all()
def test_prepandna_multidimension():
array = np.array([[1.5, 2.3], [0.5, 2.5]])
res = npext.prepend_na(array, 2)
assert np.isnan(res[:2]).all()
assert np.array_equal(res[2:], array)
@pytest.mark.parametrize(
'array, test_res, null_check_func',
[
(
np.array([1, 2.5, 0, 1, 3]),
np.array([
[np.nan, np.nan, 1],
[np.nan, 1., 2.5],
[1., 2.5, 0.],
[2.5, 0., 1.],
[0., 1., 3.]
]),
np.isnan
),
(
np.array(['2020-04-09', '2020-04-10', '2020-04-11', '2020-04-12', '2020-04-13'], dtype='datetime64[D]'),
np.array([
['NaT', 'NaT', '2020-04-09'],
['NaT', '2020-04-09', '2020-04-10'],
['2020-04-09', '2020-04-10', '2020-04-11'],
['2020-04-10', '2020-04-11', '2020-04-12'],
['2020-04-11', '2020-04-12', '2020-04-13']], dtype='datetime64[D]'),
np.isnat
)
]
)
def test_rolling(array, test_res, null_check_func):
res = npext.rolling(array, 3, as_array=True)
for i in range(test_res.shape[0]):
for j in range(test_res.shape[1]):
v, test_v = res[i, j], test_res[i, j]
assert null_check_func(v) and null_check_func(test_v) or v == test_v
def test_rolling_gen():
array = np.array([1, 2.5, 0, 1, 3])
res = np.array([
[np.nan, np.nan, 1],
[np.nan, 1, 2.5],
[1., 2.5, 0.],
[2.5, 0., 1.],
[0., 1., 3.]
])
res_gen = np.array(list(npext.rolling(array, 3)))
res_gen_skip = np.array(list(npext.rolling(array, 3, skip_na=True)))
assert np.isnan(res_gen[:2]).any()
assert np.array_equal(res_gen[2:], res[2:])
assert np.array_equal(res_gen_skip, res[2:])
@pytest.fixture(params=[True, False])
def prepend_nans(request):
return request.param
def test_rolling_apply_multiple_dim_result(n_jobs, prepend_nans):
window = 3
res = npext.rolling_apply(
lambda x: (max(x), int(np.mean(x)), min(x)),
window,
np.array([1, 2, 5, 1, 6, 4, 0]),
prepend_nans=prepend_nans,
n_jobs=n_jobs
)
test_res = np.array([
[5.0, 2.0, 1.0],
[5.0, 2.0, 1.0],
[6.0, 4.0, 1.0],
[6.0, 3.0, 1.0],
[6.0, 3.0, 0.0]
])
if prepend_nans:
assert res.shape == (test_res.shape[0] + window - 1, test_res.shape[1])
assert np.isnan(res[:window - 1]).all()
assert np.array_equal(res[window - 1:], test_res)
else:
assert np.array_equal(res, test_res)
@pytest.mark.parametrize(
'apply, input, window, func, params, test_result',
[
(
npext.rolling_apply,
[
np.array([1, 2.5, 0, 1, 3]),
np.array([1, 2.5, 0, 1, 3]),
np.array([1, 2.5, 0, 1, 3])
],
3,
lambda x, y, z, v: sum([sum(x), sum(y), sum(z)]) + v,
dict(v=1),
np.array([np.nan, np.nan, 11.5, 11.5, 13])
),
(
npext.rolling_apply,
np.array(['2021-02-02', '2021-02-03', '2021-02-05', '2021-02-01'], dtype=np.datetime64),
2,
np.max,
dict(),
np.array(['NaT', '2021-02-03', '2021-02-05', '2021-02-05'], dtype=np.datetime64)
),
(
npext.rolling_apply,
np.array([1, 2.5, 0, 1, 3]),
3,
sum,
{},
np.array([np.nan, np.nan, 3.5, 3.5, 4])
),
(
npext.expanding_apply,
[
np.array([1, 2.5, 0, 1, 3]),
np.array([1, 2.5, 0, 1, 3]),
np.array([1, 2.5, 0, 1, 3])
],
3,
lambda x, y, z, v: sum([sum(x), sum(y), sum(z)]) + v,
dict(v=1),
np.array([np.nan, np.nan, 11.5, 14.5, 23.5])
),
(
npext.expanding_apply,
np.array([1, 2.5, 0, 1, 3]),
3,
sum,
{},
np.array([np.nan, np.nan, 3.5, 4.5, 7.5])
)
]
)
def test_window_apply_func(apply, input, window, func, params, test_result, n_jobs, prepend_nans):
if isinstance(input, np.ndarray):
res = apply(func, window, input, prepend_nans=prepend_nans, n_jobs=n_jobs, **params)
else:
res = apply(func, window, *input, prepend_nans=prepend_nans, n_jobs=n_jobs, **params)
if prepend_nans:
assert test_result.size == res.size
assert np.isnan(res[:window - 1]).all()
assert np.array_equal(
res[window - 1:],
test_result[window - 1:]
)
else:
assert test_result.size - window + 1 == res.size
assert np.array_equal(
res,
test_result[window - 1:]
)
@pytest.mark.parametrize(
'input',
[
[np.zeros((3, 3))],
[
np.arange(8),
np.arange(9)
]
]
)
def test_apply_input_errors(input, apply):
with pytest.raises(ValueError):
apply(lambda *args: 1, 2, *input)
@pytest.mark.parametrize(
'window',
[None, 2.]
)
def test_rolling_apply_wrong_window_type(window, apply):
with pytest.raises(TypeError):
apply(sum, window, np.arange(20))
@pytest.mark.parametrize(
'dtype', [float, np.datetime64, int]
)
def test_nans_array(dtype):
arr = npext.nans(5, dtype)
assert arr.size == 5
assert np.isnan(arr).all()
@pytest.mark.parametrize(
'params, test_result',
[
(
dict(start=-1, end=-100, min_step=1, step_mult=1.5),
np.array([-1.0, -2.0, -3.5, -5.75, -9.125, -14.1875, -21.78125, -33.171875, -50.2578125, -75.88671875])
),
(
dict(start=1, end=100, min_step=1, step_mult=1.5, round_func=lambda a: a.astype(int)),
np.array([1, 2, 3, 5, 9, 14, 21, 33, 50, 75])
),
(
dict(start=1, end=10, min_step=0.5, step_mult=1.5),
np.array([1.0, 1.5, 2.25, 3.375, 5.0625, 7.59375])
),
(
dict(start=-100, end=-200, min_step=1, step_mult=1.25, round_func=lambda arr: [round(x, 2) for x in arr]),
np.array([-100.0, -101.0, -102.25, -103.81, -105.77,
-108.21, -111.26, -115.07, -119.84, -125.8,
-133.25, -142.57, -154.21, -168.76, -186.95])
),
]
)
def test_expstep_range(params, test_result):
assert np.array_equal(npext.expstep_range(**params), test_result)
@pytest.mark.parametrize(
'params, error_msg',
[
(
dict(start=-100, end=-200, min_step=0, step_mult=1.25),
'min_step should be bigger than 0'
),
(
dict(start=-100, end=-200, min_step=-1, step_mult=1.25),
'min_step should be bigger than 0'
),
(
dict(start=-100, end=-200, min_step=1, step_mult=0),
'mult_step should be bigger than 0'
),
(
dict(start=-100, end=-200, min_step=1, step_mult=-1),
'mult_step should be bigger than 0'
),
]
)
def test_expstep_range_wrong_params(params, error_msg):
with pytest.raises(ValueError) as err:
npext.expstep_range(**params)
err.match(error_msg)
def test_expanding_pandas_similar(expanding_window, expanding_func, n_jobs):
array = np.array([1, 2, 3, 5, -1, -3, 0.5, 20])
res = npext.expanding_apply(expanding_func, expanding_window, array, n_jobs=n_jobs)
test_res = pd.DataFrame(dict(x=array)).expanding(expanding_window).apply(expanding_func, raw=False).x.values
nans_offset = np.isnan(test_res).sum()
assert np.isnan(res[:nans_offset]).all()
assert np.array_equal(
test_res[nans_offset:],
res[nans_offset:]
)
@pytest.mark.parametrize(
'arr, res_array',
[
([[2, 2], [3, 3]], np.array([[0, 0], [1, 1]])),
(np.array([[2, 2], [3, 3]]), np.array([[0, 0], [1, 1]])),
([1, 2, 3], np.array([0, 0, 1])),
(
[
[[2, 2], [3, 3]],
[[3, 3], [2, 2]],
],
np.array([
[[0, 0], [1, 1]],
[[1, 1], [0, 0]],
])
)
]
)
def test_apply(arr, res_array):
assert np.array_equal(
npext.apply_map(lambda x: 0 if x < 3 else 1, arr),
res_array
)
@pytest.mark.parametrize(
'func, params, exc_class, exc_message_pattern',
[
(
npext.expanding,
dict(array=np.arange(10), min_periods=11),
ValueError,
'array.size should be bigger than min_periods'
),
(
npext.rolling,
dict(array=np.arange(10), window=11),
ValueError,
'array.size should be bigger than window'
),
(
npext.expanding,
dict(array=np.arange(10), min_periods=11.),
TypeError,
"Wrong min_periods"
),
(
npext.rolling,
dict(array=np.arange(10), window=11.),
TypeError,
"Wrong window"
),
]
)
def test_window_func_exceptions(func, params, exc_class, exc_message_pattern):
with pytest.raises(exc_class, match=exc_message_pattern):
func(**params)
def test_expanding_with_nans():
array = np.arange(10)
res = npext.expanding(array, min_periods=2, skip_na=False, as_array=True)
assert len(array) == len(res)
assert np.isnan(res[0]).all()