Skip to content

Commit c806b64

Browse files
committed
Update DFM.py
1 parent a4624d6 commit c806b64

File tree

1 file changed

+6
-6
lines changed
  • pymc_extras/statespace/models

1 file changed

+6
-6
lines changed

pymc_extras/statespace/models/DFM.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,18 @@ class BayesianDynamicFactor(PyMCStateSpace):
2525
2626
Parameters
2727
----------
28-
k_endog : int
29-
Number of observed time series.
30-
3128
k_factors : int
3229
Number of latent factors.
3330
3431
factor_order : int
3532
Order of the VAR process for the latent factors.
3633
34+
k_endog : int
35+
Number of observed time series.
36+
37+
endog_names : Sequence[str], optional
38+
Names of the observed time series. If not provided, default names will be generated as `endog_1`, `endog_2`, ..., `endog_k`.
39+
3740
exog : array_like, optional
3841
Array of exogenous regressors for the observation equation (nobs x k_exog).
3942
Default is None, meaning no exogenous regressors.
@@ -50,9 +53,6 @@ class BayesianDynamicFactor(PyMCStateSpace):
5053
error_cov_type : {'scalar', 'diagonal', 'unstructured'}, optional
5154
Structure of the covariance matrix of the observation errors.
5255
53-
enforce_stationarity : bool, optional
54-
Whether to transform AR parameters to enforce stationarity.
55-
5656
filter_type: str, default "standard"
5757
The type of Kalman Filter to use. Options are "standard", "single", "univariate", "steady_state",
5858
and "cholesky". See the docs for kalman filters for more details.

0 commit comments

Comments
 (0)