Exemplo n.º 1
0
 def test_strange_names(self):
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     df_month.rename(columns={'d5a7': '3*tempête !'}, inplace=True)
     mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
     mvlr.do_analysis()
     self.assertTrue(hasattr(mvlr, 'list_of_fits'))
Exemplo n.º 2
0
 def test_cross_validation(self):
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     mvlr = og.MultiVarLinReg(df_month,
                              '313b',
                              p_max=0.04,
                              cross_validation=True)
     self.assertTrue(hasattr(mvlr, 'list_of_fits'))
Exemplo n.º 3
0
    def test_plot(self):
        df = datasets.get('gas_2016_hour')
        df_month = df.resample('MS').sum()
        mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
        mvlr.do_analysis()

        with mock.patch.object(plt_mocked, 'subplots', return_value=(fig_mock, ax_mock)):
            mvlr.plot()
Exemplo n.º 4
0
    def test_prune(self):
        "Create overfitted model and prune it"
        df = datasets.get('gas_2016_hour')
        df_month = df.resample('MS').sum()
        mvlr = og.MultiVarLinReg(df_month, '313b')
        mvlr.do_analysis()
        self.assertTrue("ba14" in mvlr.fit.model.exog_names)
        pruned = mvlr._prune(mvlr.fit, 0.05)
        self.assertTrue("ba14" in pruned.model.exog_names)
        pruned = mvlr._prune(mvlr.fit, 0.00009) # with this value, both x will be removed, which is a bit counter-intuitive because initially only ba14 has a pvalue > p_max.
        self.assertFalse("ba14" in pruned.model.exog_names)
        self.assertFalse("d5a7" in pruned.model.exog_names)

        mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.00009)
        mvlr.do_analysis()
        self.assertFalse("ba14" in mvlr.fit.model.exog_names)
        self.assertFalse("d5a7" in mvlr.fit.model.exog_names)
Exemplo n.º 5
0
 def test_alternative_metrics(self):
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
     best_rsquared = mvlr.find_best_rsquared(mvlr.list_of_fits)
     best_akaike = mvlr.find_best_akaike(mvlr.list_of_fits)
     best_bic = mvlr.find_best_bic(mvlr.list_of_fits)
     self.assertEqual(best_rsquared, best_akaike)
     self.assertEqual(best_rsquared, best_bic)
Exemplo n.º 6
0
 def test_prune(self):
     "Create overfitted model and prune it"
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     mvlr = og.MultiVarLinReg(df_month, '313b')
     self.assertTrue("Q('d5a7')" in mvlr.fit.model.exog_names)
     pruned = mvlr._prune(mvlr.fit, 0.05)
     self.assertTrue("Q('d5a7')" in pruned.model.exog_names)
     pruned = mvlr._prune(mvlr.fit, 0.0001)
     self.assertFalse("Q('d5a7')" in pruned.model.exog_names)
Exemplo n.º 7
0
    def test_predict(self):
        df = datasets.get('gas_2016_hour')
        df_month = df.resample('MS').sum()
        df_month.rename(columns={'d5a7': '3*tempête !'}, inplace=True)
        mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
        mvlr.do_analysis()
        mvlr.add_prediction()

        self.assertListEqual(mvlr.df.columns.tolist(),
                             df_month.columns.tolist() + ['predicted', 'interval_l', 'interval_u'])
Exemplo n.º 8
0
 def test_raises(self):
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
     self.assertRaises(UnboundLocalError, mvlr.add_prediction)
     try:
         x = mvlr.list_of_fits
         self.assertTrue(False)
     except UnboundLocalError:
         self.assertTrue(True)
Exemplo n.º 9
0
    def test_pickle_round_trip(self):
        "Pickle, unpickle and check results"
        df = datasets.get('gas_2016_hour')
        df_month = df.resample('MS').sum().loc['2016', :]
        df_training = df_month.iloc[:-1, :]
        df_pred = df_month.iloc[[-1], :]
        mvlr = og.MultiVarLinReg(df_training, '313b', p_max=0.04)
        mvlr.do_analysis()
        df_pred_95_orig = mvlr._predict(mvlr.fit, df=df_pred)

        s = pickle.dumps(mvlr)
        m = pickle.loads(s)
        self.assertTrue(hasattr(m, 'list_of_fits'))
        df_pred_95_roundtrip = m._predict(m.fit, df=df_pred)
        self.assertAlmostEqual(df_pred_95_orig.loc['2016-12-01', 'predicted'], df_pred_95_roundtrip.loc['2016-12-01', 'predicted'])
Exemplo n.º 10
0
    def test_prediction(self):
        df = datasets.get('gas_2016_hour')
        df_month = df.resample('MS').sum().loc['2016', :]
        df_training = df_month.iloc[:-1, :]
        df_pred = df_month.iloc[[-1], :]
        mvlr = og.MultiVarLinReg(df_training, '313b', p_max=0.04)
        mvlr.do_analysis()
        df_pred_95 = mvlr._predict(mvlr.fit, df=df_pred)
        mvlr.confint = 0.98
        df_pred_98 = mvlr._predict(mvlr.fit, df=df_pred)
        self.assertAlmostEqual(df_pred_95.loc['2016-12-01', 'predicted'], df_pred_98.loc['2016-12-01', 'predicted'])
        self.assertTrue(df_pred_98.loc['2016-12-01', 'interval_u'] > df_pred_95.loc['2016-12-01', 'interval_u'])
        self.assertTrue(df_pred_98.loc['2016-12-01', 'interval_l'] < df_pred_95.loc['2016-12-01', 'interval_l'])

        # check limitation to zero
        mvlr.allow_negative_predictions = False
        mvlr.add_prediction()
        self.assertTrue(mvlr.df['predicted'].min() >= 0)
Exemplo n.º 11
0
 def test_init(self):
     df = datasets.get('gas_2016_hour')
     df_month = df.resample('MS').sum()
     mvlr = og.MultiVarLinReg(df_month, '313b', p_max=0.04)
     mvlr.do_analysis()
     self.assertTrue(hasattr(mvlr, 'list_of_fits'))