get_sys_details {benchmarkme} | R Documentation |
General system information
Description
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.
Usage
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
)
Arguments
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 |
Value
A list
Examples
## Returns all details about your machine
get_sys_details(cpu = FALSE, installed_packages = FALSE, ram = FALSE)
[Package benchmarkme version 1.0.8 Index]