periodogram: 'periodogram' determines the periodogram of a time series

Description Usage Arguments Value Examples

View source: R/frequdom.r

Description

periodogram determines the periodogram of a time series

Usage

1
periodogram(y, nf, ACF = FALSE, type = "cov")

Arguments

y

(n,1) vector, the time series or an acf at lags 0,1,...,n-1

nf

scalar, the number of equally spaced frequencies; not necessay an integer

ACF

logical, FALSE, if y is ts, TRUE, if y is acf

type

c("cov","cor"), area under spectrum, can be variance or normed to 1.

Value

out (floor(nf/2)+1,2) matrix, the frequencies and the periodogram

Examples

1
2
3
data(WHORMONE)
## periodogram at Fourier frequencies and frequencies 0 and 0.5 
out <-periodogram(WHORMONE,length(WHORMONE)/2,ACF=FALSE,type="cov") 

tsapp documentation built on Oct. 30, 2021, 5:08 p.m.

Related to periodogram in tsapp...