loadDFData              package:iSPlot              R Documentation

_L_o_a_d _a _D_a_t_a_f_r_a_m_e _i_n_t_o _d_a_t_a_E_n_v _e_n_v_i_r_o_n_m_e_n_t

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

     loadDFData loads a dataframe or matrix into the data environment,
     dataEnv.   Before adding the data set to dataEnv, columns are
     added to the data set  for the default plot data.  Currently, the
     default plot data are  color="black", pch=1, highlit=FALSE, and
     hide=FALSE.  The default plot  data are stored in the dataEnv
     variable, defaultPlotData.

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

     loadDFData(dataF, dfName)

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

   dataF: the dataframe or matrix 

  dfName: the data set name - a character string 

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

     Elizabeth Whalen

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

     'setOpenDView',  'setLoadView', 'addColumn'

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

       # these should be called by selecting either Open Data or Open File 
       # under the File menu
       data(USArrests)
       loadDFData(USArrests,"USArrests")

