nuget server logo nuget api documents
↑

API Docs / REnv / etc

etc

Full name SMRUCC.Rsharp.Runtime.Internal.Invokes.etc Assembly REnv Members 10

01 Syntax

SMRUCC.Rsharp.Runtime.Internal.Invokes.etc

02 Methods

NameOverloadsSummary
license 1 The R# License Terms The license terms under which R# is distributed.
contributors 1 R# Project Contributors The R# Who-is-who, describing who made significant contributions to the development of R#.
Sys_info 1 Extract System and User Information Reports system and user information.
unixtimestamp 1 Get current time in xxxxx.xxxx unix time stamp format.
Sys_getenv 1 Get Environment Variables Sys.getenv obtains the values of the environment variables.
Sys_getlocale 1 Provides information about a specific culture (called a locale for unmanaged code development).
sessionInfo 1 Collect Information About the Current R Session Print version information about R, the OS and attached or loaded packages.
platformID 1 Gets a System.Version object that identifies the operating system.
RVer 1 Version Information R.Version() provides detailed information about the version of R running.
CultureInfo_ctor 1 Initializes a new instance of the System.Globalization.CultureInfo class based on the culture specified by name.

03 Members

method license #
license(Environment)

The R# License Terms

The license terms under which R# is distributed.

method contributors #
contributors(Environment)

R# Project Contributors

The R# Who-is-who, describing who made significant contributions to the development of R#.

method Sys_info #
Sys_info

Extract System and User Information

Reports system and user information.

Returns

A character vector with fields

  • sysname The operating system name.
  • release The OS release.
  • version The OS version.
  • nodename A name by which the machine Is known On the network (If any).
  • machine A concise description Of the hardware, often the CPU type.
  • login The user 's login name, or "unknown" if it cannot be ascertained.
  • user The name Of the real user ID, Or "unknown" If it cannot be ascertained.
  • effective_user The name Of the effective user ID, Or "unknown" If it cannot be ascertained. This may differ from the real user In 'set-user-ID’ processes.

The last three fields give the same value On Windows.

method unixtimestamp #
unixtimestamp

Get current time in xxxxx.xxxx unix time stamp format.

method Sys_getenv #
Sys_getenv(String)

Get Environment Variables

Sys.getenv obtains the values of the environment variables.

Parameters
NameTypeDescription
xString

a character vector, or NULL.

method Sys_getlocale #
Sys_getlocale

Provides information about a specific culture (called a locale for unmanaged code development). The information includes the names for the culture, the writing system, the calendar used, the sort order of strings, and formatting for dates and numbers.

method sessionInfo #
sessionInfo(Environment)

Collect Information About the Current R Session

Print version information about R, the OS and attached or loaded packages.

Returns

sessionInfo() returns an object of class "sessionInfo" which has print and toLatex methods. This is a list with components

method platformID #
platformID

Gets a System.Version object that identifies the operating system.

method RVer #

Version Information

R.Version() provides detailed information about the version of R running.

Parameters
NameTypeDescription
envEnvironment

-

Returns

R.Version returns a list with character-string components

  • platform the platform For which R was built. A triplet Of the form CPU-VENDOR-OS, As determined by the configure script. E.g, "i686-unknown-linux-gnu" Or "i386-pc-mingw32".
  • arch the architecture(CPU) R was built On/For.
  • os the underlying operating system.
  • system CPU And OS, separated by a comma.
  • status the status Of the version (e.g., "alpha")
  • major the major version number
  • minor the minor version number, including the patchlevel
  • year the year the version was released
  • month the month the version was released
  • day the day the version was released
  • svn rev the Subversion revision number, which should be either "unknown" Or a Single number. (A range Of numbers Or a number With M Or S appended indicates inconsistencies In the sources used To build this version Of R.)
  • language always "R".
method CultureInfo_ctor #
CultureInfo_ctor(String)

Initializes a new instance of the System.Globalization.CultureInfo class based on the culture specified by name.

Parameters
NameTypeDescription
cultureNameString

A predefined System.Globalization.CultureInfo name, System.Globalization.CultureInfo.Name of an existing System.Globalization.CultureInfo, Or Windows-only culture name. name Is Not case-sensitive.