View source: R/get_sys_details.R
| get_sys_details | R Documentation |
The get_sys_info returns general system level information as a list. The
function parameters control the information to upload. If a parameter is set to
FALSE, an NA is uploaded instead. Each element of the list
is contains the output from:
Sys.info();
get_platform_info();
get_r_version();
get_ram();
get_cpu();
get_byte_compiler();
get_linear_algebra();
Sys.getlocale()
installed.packages();
.Machine
The package version number;
Unique ID - used to extract results;
The current date.
get_sys_details(
sys_info = TRUE,
platform_info = TRUE,
r_version = TRUE,
ram = TRUE,
cpu = TRUE,
byte_compiler = TRUE,
linear_algebra = TRUE,
locale = TRUE,
installed_packages = TRUE,
machine = TRUE
)
sys_info |
Default |
platform_info |
Default |
r_version |
Default |
ram |
Default |
cpu |
Default |
byte_compiler |
Default |
linear_algebra |
Default |
locale |
Default |
installed_packages |
Default |
machine |
Default |
A list
## Returns all details about your machine
get_sys_details(cpu = FALSE, installed_packages = FALSE, ram = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.