sample time series datasets R and python -


since lazy don't want spend time downloading datasets, loading them , perform pre-processing test sample functions on different timeseries. sample timeseries datasets available r , python? (which can imported easily). eg: there iris dataset (which can loaded in environment using data(iris)).

in r, per @kabulan0lak's comment, can choose different "preloaded" datasets. 1 way see have available in system type:

data() 

since you're looking time series data, suggest eustockmarkets dataset. can either load in space explicitly:

data("eustockmarkets") 

or call directly, typing:

eustockmarkets 

other datasets may interest include:

  • lakehuron dataset single series of class ts.
  • johnsonjohnson quarterly earnings of company johnson & johnson .

Comments