dim                 package:fSeries                 R Documentation

_t_i_m_e_S_e_r_i_e_s _C_o_l_u_m_n_s _a_n_d _R_o_w_s

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

     A collection and description of functions  and methods dealing
     with columns and rows of  'timeSeries' objects.  

       'dim'         Returns the dimension of a 'timeSeries' object,
       'dimnames'    Returns the dimension names of a 'timeSeries' object,
       'colnames<-'  Assigns column names to a 'timeSeries' object,
       'rownames<-'  Assigns row names to a 'timeSeries' object,
       'is.array'    Allows that NCOL and NROW work properly.

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

     ## S3 method for class 'timeSeries':
     dim(x)
     ## S3 method for class 'timeSeries':
     dimnames(x)

     colnames<-.timeSeries(x) <- value
     rownames<-.timeSeries(x) <- value

     ## S3 method for class 'timeSeries':
     is.array(x)

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

   value: a valid value for column names component of 'dimnames(x)'. 
          For a '"timeSeries"' object this is either 'NULL' or a 
          character vector of length the column dimension. Not, row
          names cannot be assigne for a '"timeSeries"' object, the
          function 'rownames()' will stop and return an error message. 

       x: an object of class 'timeSeries'. 

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

     NA

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

     Diethelm Wuertz for the Rmetrics R-port.

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

     ## NYI

