mosaicperm.panel.MosaicPanelTest.plot_tseries¶
- MosaicPanelTest.plot_tseries(time_index=None, alpha: float = 0.05, show_plot: bool = True, **figure_kwargs) None¶
Plots the results of
fit_tseries().- Parameters:
- time_indexnp.array or pd.Index
n_obs-length index information (e.g. datetimes) for each observation.
- alphafloat
Nominal level.
- show_plotbool
If True, runs
matplotlib.pyplot.show().- **figure_kwargsdict
kwargs for
plt.figure(), e.g.,figsize.
- Returns:
- NoneNoneType
Returns None if show_plot=True. Else returns the following.
- fig
matplotlib.Figure The figure from the
plt.subplots()call.- ax: array of
matplotlib.Axes Axes from the
plt.subplots()call.