spectrum                package:stats                R Documentation

_S_p_e_c_t_r_a_l _D_e_n_s_i_t_y _E_s_t_i_m_a_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     The 'spectrum' function estimates the spectral density of a time
     series.

_U_s_a_g_e:

     spectrum(x, method = c("pgram", "ar"), plot = TRUE,
              na.action = na.fail, ...)

_A_r_g_u_m_e_n_t_s:

       x: A univariate or multivariate time series.

  method: String specifying the method used to estimate the spectral
          density.  Allowed methods are '"pgram"' (the default) and
          '"ar"'.

    plot: logical. If 'TRUE' then the spectral density is plotted.

na.action: 'NA' action function.

     ...: Further arguments to specific spec methods or 'plot.spec'.

_D_e_t_a_i_l_s:

     'spectrum' is a wrapper function which calls the methods
     'spec.pgram' and 'spec.ar'.

     The spectrum here is defined with scaling '1/frequency(x)',
     following S-PLUS.  This makes the spectral density a density over
     the range '(-frequency(x)/2, +frequency(x)/2]', whereas a more
     common scaling is 2pi and range (-0.5, 0.5] (e.g., Bloomfield) or
     1 and range (-pi, pi].

     If available, a confidence interval will be plotted by
     'plot.spec': this is asymmetric, and the width of the centre mark
     indicates the equivalent bandwidth.

_V_a_l_u_e:

     An object of class '"spec"', which is a list containing at least
     the following components: 

    freq: vector of frequencies at which the spectral density is
          estimated. (Possibly approximate Fourier frequencies.) The
          units are the reciprocal of cycles per unit time (and not per
          observation spacing): see Details below.

    spec: Vector (for univariate series) or matrix (for multivariate
          series) of estimates of the spectral density at frequencies
          corresponding to 'freq'.

     coh: 'NULL' for univariate series. For multivariate time series, a
          matrix containing the _squared_ coherency between different
          series. Column  i + (j - 1) * (j - 2)/2 of 'coh' contains the
          squared coherency between columns i and j of 'x', where i <
          j.

   phase: 'NULL' for univariate series. For multivariate time series a
          matrix containing the cross-spectrum phase between different
          series. The format is the same as 'coh'.

  series: The name of the time series.

  snames: For multivariate input, the names of the component series.

  method: The method used to calculate the spectrum.


     The result is returned invisibly if 'plot' is true.

_N_o_t_e:

     The default plot for objects of class '"spec"' is quite complex,
     including an error bar and default title, subtitle and axis
     labels.  The defaults can all be overridden by supplying the
     appropriate graphical parameters.

_A_u_t_h_o_r(_s):

     Martyn Plummer, B.D. Ripley

_R_e_f_e_r_e_n_c_e_s:

     Bloomfield, P. (1976) _Fourier Analysis of Time Series: An
     Introduction._ Wiley.

     Brockwell, P. J. and Davis, R. A. (1991) _Time Series: Theory and
     Methods._ Second edition. Springer.

     Venables, W. N. and Ripley, B. D. (2002) _Modern Applied
     Statistics with S-PLUS._ Fourth edition. Springer. (Especially
     pages 392-7.)

_S_e_e _A_l_s_o:

     'spec.ar', 'spec.pgram'; 'plot.spec'.

_E_x_a_m_p_l_e_s:

     ## Examples from Venables & Ripley
     ## spec.pgram
     par(mfrow=c(2,2))
     spectrum(lh)
     spectrum(lh, spans=3)
     spectrum(lh, spans=c(3,3))
     spectrum(lh, spans=c(3,5))

     spectrum(ldeaths)
     spectrum(ldeaths, spans=c(3,3))
     spectrum(ldeaths, spans=c(3,5))
     spectrum(ldeaths, spans=c(5,7))
     spectrum(ldeaths, spans=c(5,7), log="dB", ci=0.8)

     # for multivariate examples see the help for spec.pgram

     ## spec.ar
     spectrum(lh, method="ar")
     spectrum(ldeaths, method="ar")

