How to Apply the Sys.info() Function in R (Example Code)

This tutorial demonstrates how to return system and user information using the Sys.info function in R.

Example: How to Extract System & User Information Using the Sys.info() Function

Sys.info()                     # Get system and user information
#                                        sysname 
#                                        "Linux" 
#                                        release 
#                               "4.4.0-1128-aws" 
#                                        version 
# "#142-Ubuntu SMP Fri Apr 16 12:42:33 UTC 2021" 
#                                       nodename 
#                                 "27c3dd272f80" 
#                                        machine 
#                                       "x86_64" 
#                                          login 
#                                      "unknown" 
#                                           user 
#                                        "shiny" 
#                                 effective_user 
#                                        "shiny"

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Menu
Top