Assignment 9

Code
R
Plots
Assignment
Author

Vikrant Sagar R

Published

November 22, 2022

TIME SERIES DATA

  1. Collect your own time series data and import into R (e.g. you can use quantmod to collect stock data)

2. Examine class of time series object and variables

3. Generate time series charts using tsstudio1.R and dygraphs1.R

a. Analyze time series variables

i. Trend

It refers to the movement of data over time. It is the component of a time series that represents variations of low frequency in a time series, the high and medium frequency fluctuations having been filtered out.

ii. Stationarity

Stationarity means that the statistical properties of a time series (or rather the process generating it) do not change over time. Stationarity is important because many useful analytical tools and statistical tests and models rely on it.

iii. pdq

A time series is an autoregressive integrated moving average model of order p, d, q, ARIMA(p,d,q), if ∇ d x t is an autoregressive moving average of order p,q, ARMA(p,q). That is, if the series is differenced times, and it then follows an ARMA(p,q) process, then it is an ARIMA(p,d,q) series.