Beispiel #1
0
 def test_row_all_hot_fail(self):
     import pandas as pd
     r0 = pd.Series([1, 1, 1, 1])
     with self.assertRaises(ValueError):
         util._check_one_hot(r0)
Beispiel #2
0
 def test_row_nan_one_hot_fail(self):
     import pandas as pd
     r0 = pd.Series([0, float("nan"), 1, 0])
     with self.assertRaises(ValueError):
         util._check_one_hot(r0)
Beispiel #3
0
 def test_row_succ(self):
     import pandas as pd
     r0 = pd.Series([0, 0, 1, 0])
     self.assertIs(util._check_one_hot(r0), r0)