pastas.plotting.plots.pairplot#

pairplot(data, bins=None)[source]#

Plot correlation between time series on of values on the same time steps. Based on seaborn pairplot method. :param data: List of Series or Dataframe with DateTime index :type data: Union[DataFrame, List[Series]] :param bins: Number of bins in the histogram, by default None which uses Sturge’s

Rule to determine the number bins

Return type

Dict[str, Axes]

Parameters