redraw: Auxiliary function that computes the spectrum

Description Usage Arguments Value Author(s) Examples

View source: R/redraw.R

Description

Auxiliary function that computes the spectrum

Usage

1
redraw(series, ...)

Arguments

series

A time series object

...

optional arguments

Value

spec

Periodogram

Author(s)

Francisco Juretig

Examples

1
2
3
4
5
6
function (series, ...) 
{
    args <- list(...)
    ws = spec.pgram(series, spans = args$p, plot = FALSE, detrend = args$detrend)
    return(ws$spec)
  }

timesboot documentation built on May 2, 2019, 2:37 p.m.

Related to redraw in timesboot...