Description Usage Arguments Value Examples
View source: R/plot_periodogram.R
This function plots the periodogram of a signal (e.g. a time
series or a series of observations) at the Fourier frequencys between 0 and pi
.
1 | plot_periodogram(pd)
|
pd |
A numeric vector that contains the values of the periodogram of a signal at the Fourier frequencies. |
A graph of the periodogram at the Fourier frequencys.
1 2 3 4 | n<- 1:1000
x <- rnorm(1:1000) + 2*sin(2*pi*n)
peri_x <- periodogram(x)
plot_periodogram(peri_x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.