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.4.0 (2024-04-24)"

Libraries

Show libraries

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

Show other information

sessionInfo()
R version 4.4.0 (2024-04-24)
Platform: x86_64-apple-darwin20
Running under: macOS Ventura 13.7.1

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.4-x86_64/Resources/lib/libRblas.0.dylib 
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-x86_64/Resources/lib/libRlapack.dylib;  LAPACK version 3.12.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.4.0    fastmap_1.1.1     cli_3.6.3        
 [5] tools_4.4.0       htmltools_0.5.8.1 yaml_2.3.8        rmarkdown_2.26   
 [9] knitr_1.46        jsonlite_1.8.9    xfun_0.43         digest_0.6.35    
[13] rlang_1.1.4       evaluate_0.23    
Back to top