May 2019
Beginner to intermediate
266 pages
5h 57m
English
Spectrum plots generate spectral densities of the time series. We will implement the following steps to create spectrum plots for the dataset indicated. Spectrum plots create a separate variation with time series representations. The following syntax is used to create a spectrum plot:
spectrum(x, ..., method = c("pgram", "ar"))
Here, the parameters refer to the following:
Now, let's create a spectral plot for our dataset. The spectral plots take all attributes together:
> require(graphics) > spectrum(AirQualityUCI, method = c("pgram", ...Read now
Unlock full access