
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 …
.NotYetImplemented()
.NotYetUsed(arg, error = TRUE)
an argument of a function that is not yet used.
a logical. If TRUE
, an error is signalled; if
FALSE
; only a warning is given.
the contrary, Deprecated
and
Defunct
for outdated code.
# NOT RUN {
require(graphics)
barplot(1:5, inside = TRUE) # 'inside' is not yet used
# }
Run the code above in your browser using DataLab