| capabilities {base} | R Documentation |
Report Capabilities of this Build of R
Description
Report on the optional features which have been compiled into this build of R.
Usage
capabilities(what = NULL)
Arguments
what |
character vector or |
Value
A named logical vector. Current components are
jpeg |
Is the |
png |
Is the |
tcltk |
Is the tcltk package operational? |
X11 |
(Unix) Are the |
http/ftp |
Are |
sockets |
Are |
libxml |
Is there support for integrating |
fifo |
are FIFO connections supported? |
cledit |
Is command-line editing available in the current R
session? This is false in non-interactive sessions.
It will be true for the command-line interface if |
iconv |
is internationalization conversion via
|
NLS |
is there Natural Language Support (for message translations)? |
profmem |
is there support for memory profiling? |
See Also
.Platform
Examples
capabilities()
if(!capabilities("http/ftp"))
warning("internal download.file() is not available")
## See also the examples for 'connections'.