List non-function objects      package:epicalc      R Documentation

_L_i_s_t _n_o_n-_f_u_n_c_t_i_o_n _o_b_j_e_c_t_s

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

     List all objects except newly created function

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

     lsNoFunction()

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

     Compared to standard 'ls()', this function displays only the
     subset of 'ls()' which are not function. 

     The member of this list can be removed by 'zap()' but not the set
     of the functions created.

     Usually the ordinary user do not need to use this command.

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

     Virasakdi Chongsuvivatwong <cvirasak@medicine.psu.ac.th>

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

     'use', 'detach', 'ls', 'rm'

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

     object1 <- 1:5
     object2 <- list(a=3, b=5)
     function1 <- function(x) {x^3 +1}
     ls() 
     lsNoFunction()

