get_sys_details: General system information

View source: R/get_sys_details.R

get_sys_detailsR 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 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

## Returns all details about your machine
get_sys_details(cpu = FALSE, installed_packages = FALSE, ram = FALSE)

benchmarkme documentation built on June 12, 2022, 5:06 p.m.