getDataFramesInEnv          package:iSPlot          R Documentation

_G_e_t _A_l_l _O_b_j_e_c_t_s _T_h_a_t _A_r_e _D_a_t_a_f_r_a_m_e_s _i_n _E_n_v_i_r_o_n_m_e_n_t

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

     getDataFramesInEnv returns the names of all data objects that are 
     of class data.frame in the environment, env.

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

     getDataFramesInEnv(env = ".GlobalEnv")

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

     env: env is a character string that represents an environment 

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

     returns a sorted vector of character strings that represent the
     names  of all data objects of class data.frame in the environment,
     env

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

     Elizabeth Whalen

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

     'getDataFromData'

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

       data(USArrests)
       x<-getDataFramesInEnv()

