NotYet                 package:base                 R Documentation

_N_o_t _Y_e_t _I_m_p_l_e_m_e_n_t_e_d _F_u_n_c_t_i_o_n_s _a_n_d _U_n_u_s_e_d _A_r_g_u_m_e_n_t_s

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

     In order to pinpoint missing functionality, the R core team uses
     these functions for missing R functions and not yet used arguments
     of existing R functions (which are typically there for
     compatibility purposes).

     You are very welcome to contribute your code ...

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

     .NotYetImplemented()
     .NotYetUsed(arg, error = TRUE)

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

     arg: an argument of a function that is not yet used.

   error: a logical.  If 'TRUE', an error is signalled; if 'FALSE';
          only a warning is given.

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

     the contrary, 'Deprecated' and 'Defunct' for outdated code.

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

     require(graphics)
     require(stats)
     plot.mlm         # to see how the "NotYetImplemented"
                      # reference is made automagically
     try(plot.mlm())

     barplot(1:5, inside = TRUE) # 'inside' is not yet used

