undoc                  package:base                  R Documentation

_F_i_n_d _U_n_d_o_c_u_m_e_n_t_e_d _O_b_j_e_c_t_s

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

     Finds the objects in a package which are undocumented, in the
     sense that they are visible to the user (or data objects provided
     by the package), but no documentation entry exists.

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

     undoc(pkg, dir)

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

     pkg: a character string naming an installed package

     dir: a character string specifying the path to a package's root
          source directory.  This must contain the subdirectory `man'
          with R documentation sources (in Rd format), and at least one
          of the `R' or `data' subdirectories with R code or data
          objects, respectively.

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

     This function is useful for package maintainers mostly.  In
     principle, all user level R objects should be documented; note
     however that the precise rules for documenting methods of generic
     functions are still under discussion.

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

     A character vector containing the names of the undocumented
     objects.

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

     undoc("eda")                   # Undocumented objects in `eda'

