@@ -246,17 +246,18 @@ def test_invalids(self):
246
246
# test experimental functions
247
247
def test_maturity_index (self ):
248
248
maturity_index (self .temp_dir .name , self .table_ecam_fp , self .md_ecam_fp ,
249
- category = 'month' , group_by = 'delivery' , n_jobs = 1 ,
250
- control = 'Vaginal' , test_size = 0.4 )
249
+ category = 'month' , group_by = 'delivery' , random_state = 123 ,
250
+ n_jobs = 1 , control = 'Vaginal' , test_size = 0.4 )
251
251
252
252
def test_detect_outliers (self ):
253
253
detect_outliers (self .table_chard_fp , self .md_chard_fp ,
254
- n_jobs = 1 , contamination = 0.05 )
254
+ random_state = 123 , n_jobs = 1 , contamination = 0.05 )
255
255
256
256
def test_predict_coordinates (self ):
257
257
pred , coords = predict_coordinates (
258
258
self .table_chard_fp , self .md_chard_fp ,
259
- axis1_category = 'latitude' , axis2_category = 'longitude' , n_jobs = 1 )
259
+ axis1_category = 'latitude' , axis2_category = 'longitude' ,
260
+ random_state = 123 , n_jobs = 1 )
260
261
261
262
262
263
md = pd .DataFrame ([(1 , 'a' , 0.11 ), (1 , 'a' , 0.12 ), (1 , 'a' , 0.13 ),
0 commit comments