#!/usr/bin/env python # coding: utf-8 # ## Examples - plot_scatters() # In[1]: from am4894pd.utils import df_dummy_ts # used to generate some dummy data from am4894plots.plots import plot_scatters # generate some dummy time series data df = df_dummy_ts(n_cols=4, freq='1min') print(df.shape) #display(df.head()) # In[2]: plot_scatters(df, renderer='notebook', h=400, w=600)