Skip to content

Commit 1c04f65

Browse files
committed
Refactor DFM tests and update constants after the rebasing procedure
1 parent a459a1a commit 1c04f65

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pymc_extras/statespace/utils/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
SEASONAL_MA_PARAM_DIM = "seasonal_ma_lag"
1414
ETS_SEASONAL_DIM = "seasonal_lag"
1515
FACTOR_DIM = "factor"
16+
ERROR_AR_PARAM_DIM = "error_ar_lag"
1617

1718
NEVER_TIME_VARYING = ["initial_state", "initial_state_cov", "a0", "P0"]
1819
VECTOR_VALUED = ["initial_state", "state_intercept", "obs_intercept", "a0", "c", "d"]

tests/statespace/models/test_DFM.py renamed to tests/statespace/test_DFM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@pytest.fixture(scope="session")
1818
def data():
1919
df = pd.read_csv(
20-
"tests/statespace/_data/statsmodels_macrodata_processed.csv",
20+
"tests/statespace/test_data/statsmodels_macrodata_processed.csv",
2121
index_col=0,
2222
parse_dates=True,
2323
).astype(floatX)

0 commit comments

Comments
 (0)