Library version (R)

Establish R library versions within Colab. In March 2024 Colab version of R is:

R version 4.3.3 (2024-02-29)
tidyverse 2.0.0
ggplot2 3.4.4

Test the Colab version of R.

print(R.version.string)
[1] "R version 4.3.3 (2024-02-29)"

Libraries

Show libraries

#print(installed.packages())
packageVersion("tidyverse")
[1] '2.0.0'
packageVersion("ggplot2")
[1] '3.5.0'

Show other information

sessionInfo()
R version 4.3.3 (2024-02-29)
Platform: x86_64-apple-darwin20 (64-bit)
Running under: macOS Ventura 13.6.4

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.3-x86_64/Resources/lib/libRblas.0.dylib 
LAPACK: /Library/Frameworks/R.framework/Versions/4.3-x86_64/Resources/lib/libRlapack.dylib;  LAPACK version 3.11.0

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

time zone: Europe/London
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] htmlwidgets_1.6.4 compiler_4.3.3    fastmap_1.1.1     cli_3.6.2        
 [5] tools_4.3.3       htmltools_0.5.8   yaml_2.3.8        rmarkdown_2.26   
 [9] knitr_1.45        jsonlite_1.8.8    xfun_0.43         digest_0.6.35    
[13] rlang_1.1.3       evaluate_0.23    
Back to top