@@ -165,7 +165,7 @@ def test_info_1d_array():
165
165
166
166
def test_info_per_column ():
167
167
"""
168
- Make sure the per_column option works.
168
+ Make sure the per_column parameter works.
169
169
"""
170
170
output = info (data = POINTS_DATA , per_column = True )
171
171
npt .assert_allclose (
@@ -175,7 +175,7 @@ def test_info_per_column():
175
175
176
176
def test_info_per_column_with_time_inputs ():
177
177
"""
178
- Make sure the per_column option works with time inputs.
178
+ Make sure the per_column parameter works with time inputs.
179
179
"""
180
180
table = pd .date_range (start = "2020-01-01" , periods = 5 ).to_numpy ()
181
181
output = info (data = table , per_column = True )
@@ -186,15 +186,15 @@ def test_info_per_column_with_time_inputs():
186
186
187
187
def test_info_spacing ():
188
188
"""
189
- Make sure the spacing option works.
189
+ Make sure the spacing parameter works.
190
190
"""
191
191
output = info (data = POINTS_DATA , spacing = 0.1 )
192
192
npt .assert_allclose (actual = output , desired = [11.5 , 61.8 , - 3 , 7.9 ])
193
193
194
194
195
195
def test_info_spacing_bounding_box ():
196
196
"""
197
- Make sure the spacing option for writing a bounding box works.
197
+ Make sure the spacing parameter for writing a bounding box works.
198
198
"""
199
199
output = info (data = POINTS_DATA , spacing = "b" )
200
200
npt .assert_allclose (
@@ -211,15 +211,15 @@ def test_info_spacing_bounding_box():
211
211
212
212
def test_info_per_column_spacing ():
213
213
"""
214
- Make sure the per_column and spacing options work together.
214
+ Make sure the per_column and spacing parameters work together.
215
215
"""
216
216
output = info (data = POINTS_DATA , per_column = True , spacing = 0.1 )
217
217
npt .assert_allclose (actual = output , desired = [11.5 , 61.8 , - 3 , 7.9 , 0.1412 , 0.9338 ])
218
218
219
219
220
220
def test_info_nearest_multiple ():
221
221
"""
222
- Make sure the nearest_multiple option works.
222
+ Make sure the nearest_multiple parameter works.
223
223
"""
224
224
output = info (data = POINTS_DATA , nearest_multiple = 0.1 )
225
225
npt .assert_allclose (actual = output , desired = [11.5 , 61.8 , 0.1 ])
0 commit comments