etc
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| 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
The R# License Terms
The license terms under which R# is distributed.
R# Project Contributors
The R# Who-is-who, describing who made significant contributions to the development of R#.
Extract System and User Information
Reports system and user information.
A character vector with fields
sysnameThe operating system name.releaseThe OS release.versionThe OS version.nodenameA name by which the machine Is known On the network (If any).machineA concise description Of the hardware, often the CPU type.loginThe user 's login name, or "unknown" if it cannot be ascertained.userThe name Of the real user ID, Or "unknown" If it cannot be ascertained.effective_userThe 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.
Get current time in xxxxx.xxxx unix time stamp format.
String)Get Environment Variables
Sys.getenv obtains the values of the environment variables.
| Name | Type | Description |
|---|---|---|
x | String | a character vector, or NULL. |
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.
Collect Information About the Current R Session
Print version information about R, the OS and attached or loaded packages.
sessionInfo() returns an object of class "sessionInfo" which has print and toLatex methods. This is a list with components
Gets a System.Version object that identifies the operating system.
Version Information
R.Version() provides detailed information about the version of R running.
| Name | Type | Description |
|---|---|---|
env | Environment | - |
R.Version returns a list with character-string components
platformthe 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".archthe architecture(CPU) R was built On/For.osthe underlying operating system.systemCPU And OS, separated by a comma.statusthe status Of the version (e.g., "alpha")majorthe major version numberminorthe minor version number, including the patchlevelyearthe year the version was releasedmonththe month the version was releaseddaythe day the version was releasedsvn revthe 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.)languagealways "R".
String)Initializes a new instance of the System.Globalization.CultureInfo class based on the culture specified by name.
| Name | Type | Description |
|---|---|---|
cultureName | String | 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. |