R.version.string[1] "R version 4.2.3 (2023-03-15)"
VLab Fisheries Atlas Course Team: Grasset Bastien, Barde Julien
This short notebook will guide you through the key features and technical setup of the RStudio Server in VLab5.
To begin working in VLab5 with R workflows, start by navigating to the Analytics. section on the platform.
You have two main options to launch an RStudio session:
Once you launch either version, you’ll enter a standard RStudio Server interface directly in your browser.
RStudio is organized into four panes:
🧩 These tabs are modular: you can show or hide panes using the menu bar →
View > Panesor via the small gear icons in the top-right of each panel.
To explore the technical setup of your session, run the following lines of code in the R console:
This returns information such as:
version: RStudio version installed (e.g., 2023.3.0.386)release_name: Code name for the release (e.g., Cherry Blossom)mode: Whether you’re on the server version sysname
"Linux"
release
"4.15.0-189-generic"
version
"#200-Ubuntu SMP Wed Jun 22 19:53:37 UTC 2022"
nodename
"jupyter-bastien-2egrasset65011--rname-2d-52-53tudio-53erver-4fp"
machine
"x86_64"
login
"unknown"
user
"jovyan"
effective_user
"jovyan"
You’ll see OS-level details such as:
sysname: Operating systemrelease: Kernel versionmachine: Architecture (usually x86_64)user: Your current user session (likely jovyan)This command shows approximate memory allocation:
total: Total memory available (e.g., 125 GB)used and available: What’s currently in use or free⚠️ Note: The number you see in “available” RAM may be lower (e.g., 32 GB) due to container quotas or dynamic allocation. The full infrastructure may have more memory, but your session may be limited based on demand and environment.
📊 To get a user-friendly view of the actual allocated RAM, go to the top-right Environment panel in RStudio and click “Memory usage report”. This tool gives you a live snapshot of RAM used by your session.
Package Version
antiword "antiword" "1.3.4"
base64enc "base64enc" "0.1-3"
bslib "bslib" "0.7.0"
cachem "cachem" "1.0.8"
cli "cli" "3.6.2"
commonmark "commonmark" "2.0.0"
digest "digest" "0.6.35"
evaluate "evaluate" "0.23"
fastmap "fastmap" "1.1.1"
fontawesome "fontawesome" "0.5.2"
fs "fs" "1.6.3"
glue "glue" "1.7.0"
highr "highr" "0.10"
htmltools "htmltools" "0.5.8"
jquerylib "jquerylib" "0.1.4"
jsonlite "jsonlite" "1.8.8"
knitr "knitr" "1.45"
lifecycle "lifecycle" "1.0.4"
litedown "litedown" "0.7"
magrittr "magrittr" "2.0.3"
This shows the first 20 installed packages and their versions. You can increase the number for a full list.
If successful, this confirms that the package and its dependencies are correctly installed.