We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7281f commit 006b961Copy full SHA for 006b961
tests/test_tools.py
@@ -75,3 +75,15 @@ def test_linear_extra_interpolation(self):
75
assert_series_equal(linear_extra_interpolation(weather_pd_series,
76
100, 'v_wind'),
77
expected_output)
78
+ expected_output = pd.Series(data=[12.0, 15.0, 21.0])
79
+ assert_series_equal(linear_extra_interpolation(weather_pd_series,
80
+ 175, 'v_wind'),
81
+ expected_output)
82
+ expected_output = pd.Series(data=[24.0, 30.0, 42.0])
83
84
+ 250, 'v_wind'),
85
86
+ expected_output = pd.Series(data=[2.0, 2.5, 2.0]) # TODO: Check this test
87
88
+ 75, 'v_wind'),
89
0 commit comments