powered by
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:
get_sys_info
FALSE
NA
Sys.info();
Sys.info()
get_platform_info();
get_platform_info()
get_r_version();
get_r_version()
get_ram();
get_ram()
get_cpu();
get_cpu()
get_byte_compiler();
get_byte_compiler()
get_linear_algebra();
get_linear_algebra()
Sys.getlocale()
installed.packages();
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 )
Default TRUE.
TRUE
Default TRUE
A list
# NOT RUN { ## Returns all details about your machine get_sys_details(cpu = FALSE, installed_packages = FALSE, ram = FALSE) # }
Run the code above in your browser using DataLab