-
Notifications
You must be signed in to change notification settings - Fork 70
Always return dictionary from data_info #582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,6 +254,8 @@ def __init__( | |
mode=mode, | ||
) | ||
|
||
self._needs_exog_data = exog_state_names is not None and len(exog_state_names) > 0 | ||
|
||
|
||
# Save counts of the number of parameters in each category | ||
self.param_counts = { | ||
"x0": k_states * (1 - self.stationary_initialization), | ||
|
@@ -337,7 +339,7 @@ def param_info(self) -> dict[str, dict[str, Any]]: | |
|
||
@property | ||
def data_info(self) -> dict[str, dict[str, Any]]: | ||
info = None | ||
info = {} | ||
|
||
if isinstance(self.exog_state_names, list): | ||
info = { | ||
|
Uh oh!
There was an error while loading. Please reload this page.