Question 3
What will typically happen if series_with_nans contains NaNs (null values) ?
statsmodels will automatically impute NaNs and fit silently.
fit() will raise an error or drop NaNs depending on the estimator; user should handle NaNs beforehand.
NaNs are treated as zeros.
The model will only use the NaN values to estimate variance.