SERIESPLOTS              package:nsRFA              R Documentation

_S_e_r_i_e_s _p_l_o_t_s

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

     Plots for time-series investigation.

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

      serieplot (x, t, lim.x=c(min(x),max(x)), lim.t=c(min(t),max(t)), 
                 ...)
      consistencyplot (t, cod, cex.axis=.8, mark.code=TRUE, ...)

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

       x: data sample

       t: vector representing time (e.g. years) of data-samples defined
          with 'cod'

lim.x, lim.t: plot limits

     cod: array that defines the data subdivision among sites

cex.axis: dimensions of points and labels

mark.code: if TRUE (default) codes of samples are plotted on y axis

     ...: graphical parameters as 'xlab', 'ylab', 'main', ...

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

     'consistencyplot' displays time-series consistency.

_N_o_t_e:

     For information on the package and the Author, and for all the
     references, see 'nsRFA'.

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

     'plot', 'DISTPLOTS'

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

     data(hydroSIMN)
     annualflows[c(1:10),]
     x <- annualflows["dato"][,]
     y <- annualflows["anno"][,]
     cod <- annualflows["cod"][,]
     consistencyplot(y,cod)

     for (i in unique(cod)) {
      serieplot(x[cod==i], y[cod==i], c(0,max(x)), c(min(y),max(y)),
                xlab="", ylab="D [mm]", main=i)
      readline()
     }

