Parameters: |
- data : array-like (nsamples, )
The samples. This should be a 1-D time-series array.
- label : str, optional
Label for time-series.
- window : int, optional (default: 1)
Size of the moving window. This is the number of observations used for
calculating the average.
- ax : matplotlib axis, optional
main matplotlib figure axis for trace.
- side_ax : matplotlib axis, optional
side matplotlib figure axis for histogram. If you provide
ax but not side_ax, we won’t plot the histogram. If provide
neither ax nor side_ax, we will set up the axes for you.
If you supply side_ax but not ax, an error will be raised.
- color : str, optional (default: ‘beryl’)
Style color of the trace.
- alpha : float, optional (default: 0.5)
Opacity of shaded area.
- legend : bool, optional
Whether to display legend in plot. Defaults to
True if legend is provided, otherwise defaults to False.
- xlabel : str, optional
x-axis label
- ylabel : str, optional
y-axis label
- labelsize : int, optional (default: 14)
Font side for axes labels.
- rolling_kwargs : dict, optional
Keyword arguments for pandas.DataFrame.rolling .
|