Timeseries Plotting System

From GM-RKB
Jump to navigation Jump to search

A Timeseries Plotting System is a plotting software system that can solve a timeseries plotting task.

  • Example(s):
    • import matplotlib ; %matplotlib inline
      ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
      ts = ts.cumsum()
      ts.plot()
    • hours1=df.set_index('login_time').groupby(pd.TimeGrouper(freq='1H')).count().fillna(0) ;
      days1.plot(logy=False,style='k--')
  • Counter-Example(s):
  • See: Timeseries Prediction System.