peaks                package:PROcess                R Documentation

_P_e_a_k _D_e_t_e_c_t_i_o_n

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

     Finds the local maxima, local noise and its associated standard 
     deviations in a vector.

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

     peaks(x, span = 3)
     noise(x, span = 5)
     sigma(x, span = 5)

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

       x: a vector.

    span: a local miximum is defined as an element in a sequence which
          is greater than all other elements within a window of width
          `span' centered at that element. The default value is 3,
          meaning that a peak is bigger than both of its neighbors.
          Local noise is definedas an element minus the mean of all
          elements within a window of width `span' centered at that
          element. Local standard deviation of an element is defined as
          the standard deviation of all elements within a window of
          width `span' centered at that element.

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

     a logical vector of the same length as `series' indicating where
     the peaks are.

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

     Xiaochun Li

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

     x <- seq(0, 10*pi, by=0.1)
     y <- sin(x)*x
     plot(x,y, type="l")
     is.max <- peaks(y)
     points(x[is.max],y[is.max], pch=21, bg="red")
     legend(2, 25, legend = "Peaks",pch = 19, col="red", bty = "n")

     # can be used for local minima too:
     # is.min <- peaks(-y)
     # points(x[is.min],y[is.min], pch=21, bg="blue")

