unstrip              package:polspline              R Documentation

_R_e_f_o_r_m_a_t _d_a_t_a _a_s _v_e_c_t_o_r _o_r _m_a_t_r_i_x

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

     This function tries to convert a date.frame or a matrix to a
     no-frills matrix without labels, and a vector or time-series to a
     no-frills vector without labels.

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

     unstrip(x) 

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

       x: one- or two-dimensional object.

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

     Many of the functions for 'logspline', 'oldlogspline',  'lspec',
     'polyclass', 'hare', 'heft', and 'polymars' were written in the
     ``before data.frame'' era; 'unstrip' attempts to keep all these
     functions useful with more advanced input objects. In particular,
     many of these functions call 'unstrip' before doing anything else.

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

     If 'x' is two-dimensional a  matrix without names, if 'x' is
     one-dimensional  a numerical vector

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

     Charles Kooperberg clk@fhcrc.org.

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

     data(co2)
     unstrip(co2)
     data(iris)
     unstrip(iris)

