plot                 package:fSeries                 R Documentation

_P_l_o_t _R_e_p_o_r_t_s

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

     Functions to plot timeSeries objects.

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

     ## S3 method for class 'timeSeries':
     plot(x, ...) 
     ## S3 method for class 'timeSeries':
     lines(x, ...)
     ## S3 method for class 'timeSeries':
     points(x, ...)

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

       x: an object of class 'timeSeries'. 

     ...: arguments passed to other methods. 

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

     a plot or plot elements of an object of class 'timeSeries'.

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

     Diethelm Wuertz for the Rmetrics R-port.

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

     ## data -  
        myFinCenter <<- "GMT"
        EDHEC = as.timeSeries(data(edhec))[1:12, 1:4]
        colnames(EDHEC) <- abbreviate(colnames(EDHEC), 6)

     ## plot -  
        plot(EDHEC[,1], type = "o", col = "steelblue", 
          main = "EDHEC", xlab = "1997", ylab = "Return")

