

   NNoott YYeett IImmpplleemmeenntteedd FFuunnccttiioonnss aanndd UUnnuusseedd AArrgguummeennttss

        .NotYetImplemented()
        .NotYetUsed(arg)

        symbols(...)
        plot.lm(...)

   AArrgguummeennttss::

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

   DDeessccrriippttiioon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 ...

   SSeeee AAllssoo::

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

   EExxaammpplleess::

        symbols            # to see how the ``NotYetImplemented''
        .NotYetImplemented      # reference is made automagically

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

