benchmarkme (version 1.0.3)

get_sys_details: 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 TRUE.

platform_info

Default TRUE.

r_version

Default TRUE.

ram

Default TRUE.

cpu

Default TRUE.

byte_compiler

Default TRUE.

linear_algebra

Default TRUE.

locale

Default TRUE

installed_packages

Default TRUE.

machine

Default TRUE

Value

A list

Examples

Run this code
# NOT RUN {
## Returns all details about your machine
get_sys_details()
# }

Run the code above in your browser using DataLab