Skip to content

Commit 5590d67

Browse files
committed
Fix AR labeling + core docstrings typo
1 parent 0bbf0d6 commit 5590d67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pymc_extras/statespace/models/structural/components/autoregressive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def populate_component_properties(self):
114114
if self.k_endog > 1:
115115
self.param_dims[f"params_{self.name}"] = (
116116
f"endog_{self.name}",
117-
AR_PARAM_DIM,
117+
f"lag_{self.name}",
118118
)
119119
self.param_dims[f"sigma_{self.name}"] = (f"endog_{self.name}",)
120120

pymc_extras/statespace/models/structural/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def extract_components_from_idata(self, idata: xr.Dataset) -> xr.Dataset:
362362
Returns
363363
-------
364364
idata: Dataset
365-
An Dataset object with hidden states transformed to represent only the "interpretable" subcomponents
365+
A Dataset object with hidden states transformed to represent only the "interpretable" subcomponents
366366
of the structural model.
367367
368368
Notes

0 commit comments

Comments
 (0)