Pre-installed R Packages

The R console, Built-in Apps and Web Apps come with a number of the most commonly used data science packages pre-installed. To get the best performance you should only ever install these specific packages manually if they explicitly require a different version to the one that is baked in.

Installing a different version of a pre-baked package

Should you require a specific package version other than what is pre-baked (see the list below), you will need to follow these installation instructions.

First, you need to check which packages are dependent on a package you want to update:

library(tools) 
dependsOnPkgs("modelr")

If the package was installed as a dependency of another package, unload the namespace of the parent package first, followed by the package you want to update:

unloadNamespace("tidyverse")
unloadNamespace("modelr")

Next, install the required package version:

devtools::install_version("modelr", "0.1.3")

Then, you can reload the package (the updated package should be loaded first followed by the parent):

library("modelr")
library("tidyverse")

Check the loaded package version:

packageVersion("modelr")

A new package version will be installed in the /home/workspace/files/R/Rversion folder from which the Apps and the R console will pull the updated package version by default.

Unfortunately, there are a couple of pre-installed packages that cannot be unloaded because they are needed for the underlying functionality of the R console (e.g. htmltools). In that case, you can use the system command to run an installation on a fresh R console behind the scenes:

system("Rscript -e \"devtools::install_version('htmltools', '0.5.1.1')\"")

Restart any R sessions or Apps to pull this newly installed package version.

If you encounter any issues installing a different package version to the one that is baked in, then please submit a Service Desk request.

List of installed R packages

The list of packages below includes both the pre-installed packages and their dependencies.

package studio 4.5.1 4.4.1 4.3.2 (soon deprecated)
arrow 21.0.0.1 21.0.0.1 21.0.0.1 21.0.0.1
askpass 1.2.1 1.2.1 1.2.1 1.2.0
assertthat 0.2.1 0.2.1 0.2.1 0.2.1
backports 1.5.0 1.5.0 1.5.0 1.4.1
base 4.4.1 4.5.1 4.4.1 4.3.2
base64enc 0.1-3 0.1-3 0.1-3 0.1-3
BH 1.87.0-1 1.87.0-1 1.87.0-1 1.87.0-1
binom 1.1-1.1 1.1-1.1 1.1-1.1 1.1-1.1
BiocGenerics 0.52.0 0.54.0 0.52.0 0.48.1
BiocManager 1.30.26 1.30.26 1.30.26 1.30.26
BiocVersion 3.20.0 3.21.1 3.20.0 3.18.1
bit 4.6.0 4.6.0 4.5.0 4.0.5
bit64 4.6.0-1 4.6.0-1 4.5.2 4.0.5
bitops 1.0-7 1.0-9 1.0-7 1.0-7
blob 1.2.4 1.2.4 1.2.4 1.2.4
boot 1.3-30 1.3-31 1.3-30 1.3-28.1
brew n/a 1.0-10 1.0-10 1.0-10
brio 1.1.5 1.1.5 1.1.5 1.1.4
broom 1.0.9 1.0.9 1.0.9 1.0.9
bslib 0.9.0 0.9.0 0.8.0 0.6.1
cachem 1.1.0 1.1.0 1.1.0 1.0.8
callr 3.7.6 3.7.6 3.7.6 3.7.5
cellranger 1.1.0 1.1.0 1.1.0 1.1.0
checkmate 2.3.1 2.3.2 2.3.1 2.3.1
class 7.3-22 7.3-23 7.3-22 7.3-22
classInt 0.4-11 0.4-11 0.4-11 0.4-11
cli 3.6.5 3.6.5 3.6.3 3.6.2
clipr 0.8.0 0.8.0 0.8.0 0.8.0
cluster 2.1.6 2.1.8.1 2.1.6 2.1.4
codetools 0.2-20 0.2-20 0.2-20 0.2-19
colorspace 2.1-0 2.1-1 2.1-1 2.1-0
commonmark 1.9.2 1.9.5 1.9.2 1.9.1
compiler 4.4.1 4.5.1 4.4.1 4.3.2
CompQuadForm 1.4.4 1.4.4 1.4.4 1.4.4
conflicted 1.2.0 1.2.0 1.2.0 1.2.0
cowplot 1.2.0 1.2.0 1.2.0 1.2.0
cpp11 0.5.2 0.5.2 0.5.0 0.4.7
crayon 1.5.3 1.5.3 1.5.3 1.5.2
credentials n/a 2.0.2 2.0.2 2.0.1
crosstalk 1.2.1 1.2.1 1.2.1 1.2.1
curl 6.2.1 6.3.0 5.2.3 5.2.0
data.table 1.17.0 1.17.4 1.16.2 1.15.0
datasets 4.4.1 4.5.1 4.4.1 4.3.2
DBI 1.2.3 1.2.3 1.2.3 1.2.2
dbplyr 2.5.0 2.5.0 2.5.0 2.5.0
Deriv 4.1.3 4.2.0 4.1.3 4.1.3
desc 1.4.3 1.4.3 1.4.3 1.4.3
DescTools 0.99.60 0.99.60 0.99.60 0.99.60
devtools n/a 2.4.5 2.4.5 2.4.5
diffobj 0.3.5 0.3.6 0.3.5 0.3.5
digest 0.6.37 0.6.37 0.6.37 0.6.34
docopt n/a 0.7.2 0.7.1 0.7.1
downlit n/a 0.4.4 0.4.4 0.4.3
dplyr 1.1.4 1.1.4 1.1.4 1.1.4
dtplyr 1.3.1 1.3.1 1.3.1 1.3.1
duckdb n/a 1.3.0 1.1.1 0.9.2-1
e1071 1.7-16 1.7-16 1.7-16 1.7-16
ellipsis n/a 0.3.2 0.3.2 0.3.2
evaluate 1.0.3 1.0.3 1.0.1 1.0.3
Exact 3.3 3.3 3.3 3.3
expm 1.0-0 1.0-0 1.0-0 1.0-0
fansi n/a 1.0.6 1.0.6 1.0.6
farver 2.1.2 2.1.2 2.1.2 2.1.1
fastmap 1.2.0 1.2.0 1.2.0 1.1.1
fmsb 0.7.6 0.7.6 0.7.6 0.7.6
fontawesome 0.5.3 0.5.3 0.5.2 0.5.2
forcats 1.0.0 1.0.0 1.0.0 1.0.0
foreign 0.8-86 0.8-90 0.8-86 0.8-85
Formula 1.2-5 1.2-5 1.2-5 1.2-5
fs 1.6.6 1.6.6 1.6.4 1.6.3
fst n/a 0.9.8 0.9.8 0.9.8
fstcore n/a 0.10.0 0.9.18 0.9.18
gargle 1.5.2 1.5.2 1.5.2 1.5.2
generics 0.1.4 0.1.4 0.1.3 0.1.3
geobr n/a 1.9.1 1.9.1 1.9.1
gert n/a 2.1.5 2.1.4 2.0.1
ggplot2 3.5.2 3.5.2 3.5.2 3.5.2
ggrepel 0.9.5 0.9.6 0.9.5 0.9.5
ggvis 0.4.9 0.4.9 0.4.9 0.4.9
gh n/a 1.5.0 1.4.1 1.4.0
gitcreds n/a 0.1.2 0.1.2 0.1.2
gld 2.6.7 2.6.7 2.6.7 2.6.7
glue 1.8.0 1.8.0 1.8.0 1.8.0
googledrive 2.1.1 2.1.1 2.1.1 2.1.1
googlesheets4 1.1.1 1.1.1 1.1.1 1.1.1
graphics 4.4.1 4.5.1 4.4.1 4.3.2
grDevices 4.4.1 4.5.1 4.4.1 4.3.2
grid 4.4.1 4.5.1 4.4.1 4.3.2
gridExtra 2.3 2.3 2.3 2.3
gtable 0.3.6 0.3.6 0.3.6 0.3.4
haven 2.5.4 2.5.5 2.5.4 2.5.4
here 1.0.1 n/a n/a n/a
hflights 0.1 0.1 0.1 0.1
highr 0.11 0.11 0.11 0.11
Hmisc 5.1-3 5.2-3 5.1-3 5.1-3
hms 1.1.3 1.1.3 1.1.3 1.1.3
htmlTable 2.4.3 2.4.3 2.4.3 2.4.3
htmltools 0.5.8.1 0.5.8.1 0.5.8.1 0.5.8.1
htmlwidgets 1.6.4 1.6.4 1.6.4 1.6.4
httpuv 1.6.15 1.6.16 1.6.15 1.6.14
httr 1.4.7 1.4.7 1.4.7 1.4.7
httr2 n/a 1.1.2 1.0.5 1.0.0
ids 1.0.1 1.0.1 1.0.1 1.0.1
ini n/a 0.3.1 0.3.1 0.3.1
IRdisplay 1.1 1.1 1.1 1.1
IRkernel 1.3.2 1.3.2 1.3.2 1.3.2
isoband 0.2.7 0.2.7 0.2.7 0.2.7
janeaustenr 1.0.0 1.0.0 1.0.0 1.0.0
janitor 2.2.1 2.2.1 2.2.1 2.2.1
jquerylib 0.1.4 0.1.4 0.1.4 0.1.4
jsonlite 2.0.0 2.0.0 1.8.9 1.8.8
kableExtra 1.4.0 1.4.0 1.4.0 1.4.0
KernSmooth 2.23-24 2.23-26 2.23-24 2.23-22
knitr 1.5 1.5 1.5 1.5
labeling 0.4.3 0.4.3 0.4.3 0.4.3
Lahman n/a 12.0-0 12.0-0 11.0-0
later 1.4.1 1.4.2 1.3.2 1.3.2
lattice 0.22-6 0.22-7 0.22-6 0.21-9
lazyeval 0.2.2 0.2.2 0.2.2 0.2.2
lifecycle 1.0.4 1.0.4 1.0.4 1.0.4
littler n/a 0.3.21 0.3.20 0.3.19
lme4 1.1-37 1.1-37 1.1-37 1.1-37
lmom 3.2 3.2 3.2 3.2
lubridate 1.9.4 1.9.4 1.9.3 1.9.3
magrittr 2.0.3 2.0.3 2.0.3 2.0.3
MASS 7.3-60.2 7.3-65 7.3-60.2 7.3-60
mathjaxr 1.8-0 1.8-0 1.8-0 1.8-0
Matrix 1.7-0 1.7-3 1.7-0 1.6-1.1
memoise 2.0.1 2.0.1 2.0.1 2.0.1
meta 8.2-0 8.2-0 8.2-0 8.2-0
metadat 1.4-0 1.4-0 1.4-0 1.4-0
metafor 4.8-0 4.8-0 4.8-0 4.8-0
methods 4.4.1 4.5.1 4.4.1 4.3.2
mgcv 1.9-1 1.9-3 1.9-1 1.9-0
microbenchmark 1.5.0 1.5.0 1.5.0 1.5.0
mime 0.12 0.13 0.12 0.12
miniUI n/a 0.1.2 0.1.1.1 0.1.1.1
minpack.lm 1.2-4 1.2-4 1.2-4 1.2-4
minqa 1.2.8 1.2.8 1.2.8 1.2.8
modelr 0.1.11 0.1.11 0.1.11 0.1.11
munsell n/a n/a 0.5.1 0.5.0
mvtnorm 1.3-3 1.3-3 1.3-3 1.3-3
nlme 3.1-164 3.1-168 3.1-164 3.1-163
nloptr 2.2.1 2.2.1 2.2.1 2.2.1
NLP 0.3-2 0.3-2 0.3-2 0.3-2
nnet 7.3-19 7.3-20 7.3-19 7.3-19
numDeriv 2016.8-1.1 2016.8-1.1 2016.8-1.1 2016.8-1.1
nycflights13 n/a 1.0.2 1.0.2 1.0.2
odbc 1.5.0 n/a n/a n/a
openssl 2.3.2 2.3.3 2.2.2 2.1.1
pander 0.6.5 0.6.6 0.6.5 0.6.5
parallel 4.4.1 4.5.1 4.4.1 4.3.2
parallelly 1.45.1 1.45.1 1.45.1 1.45.1
pbapply 1.7-4 1.7-4 1.7-4 1.7-4
pbdZMQ 0.3-14 0.3-14 0.3-14 0.3-14
pillar 1.10.2 1.10.2 1.9.0 1.9.0
pkgbuild 1.4.6 1.4.8 1.4.5 1.4.3
pkgconfig 2.0.3 2.0.3 2.0.3 2.0.3
pkgdown n/a 2.1.3 2.1.1 2.0.7
pkgload 1.4.0 1.4.0 1.4.0 1.3.4
plogr n/a 0.2.0 0.2.0 0.2.0
plotly 4.10.4 4.11.0 4.10.4 4.10.4
png 0.1-8 0.1-8 0.1-8 0.1-8
praise 1.0.0 1.0.0 1.0.0 1.0.0
prettyunits 1.2.0 1.2.0 1.2.0 1.2.0
processx 3.8.5 3.8.6 3.8.4 3.8.3
profvis 0.4.0 0.4.0 0.4.0 0.4.0
progress 1.2.3 1.2.3 1.2.3 1.2.3
promises 1.3.2 1.3.3 1.3.0 1.2.1
proxy 0.4-27 0.4-27 0.4-27 0.4-27
ps 1.9.0 1.9.1 1.8.1 1.7.6
purrr 1.1.0 1.0.4 1.0.2 1.0.2
R.cache 0.16.0 0.17.0 0.16.0 0.16.0
R.methodsS3 1.8.2 1.8.2 1.8.2 1.8.2
R.oo 1.26.0 1.27.1 1.26.0 1.26.0
R.utils 2.12.3 2.13.0 2.12.3 2.12.3
R6 2.6.1 2.6.1 2.5.1 2.5.1
ragg 1.3.3 1.4.0 1.3.3 1.2.7
rappdirs 0.3.3 0.3.3 0.3.3 0.3.3
rbibutils 2.3 2.3 2.3 2.3
rcmdcheck n/a 1.4.0 1.4.0 1.4.0
RColorBrewer 1.1-3 1.1-3 1.1-3 1.1-3
Rcpp 1.1.0 1.0.14 1.0.13 1.0.12
RcppEigen 0.3.4.0.2 0.3.4.0.2 0.3.4.0.2 0.3.4.0.2
RcppParallel 5.1.9 n/a n/a n/a
RcppTOML 0.2.3 n/a n/a n/a
RCurl 1.98-1.16 1.98-1.17 1.98-1.16 1.98-1.16
Rdpack 2.6.4 2.6.4 2.6.4 2.6.4
readr 2.1.5 2.1.5 2.1.5 2.1.5
readxl 1.4.5 1.4.5 1.4.3 1.4.3
reformulas 0.4.1 0.4.1 0.4.1 0.4.1
rematch 2.0.0 2.0.0 2.0.0 2.0.0
rematch2 2.1.2 2.1.2 2.1.2 2.1.2
remotes 2.5.0 2.5.0 2.5.0 2.4.2.1
repr 1.1.7 1.1.7 1.1.7 1.1.7
reprex 2.1.1 2.1.1 2.1.1 2.1.0
reticulate 1.43.0 n/a n/a n/a
Rhtslib 3.2.0 3.4.0 3.2.0 2.4.1
rlang 1.1.6 1.1.6 1.1.6 1.1.6
RMariaDB n/a 1.3.4 1.3.2 1.3.1
rmarkdown 2.29 2.29 2.29 2.29
rootSolve 1.8.2.4 1.8.2.4 1.8.2.4 1.8.2.4
roxygen2 n/a 7.3.2 7.3.2 7.3.1
rpart 4.1.23 4.1.24 4.1.23 4.1.21
RPostgres n/a 1.4.8 1.4.7 1.4.6
RPostgreSQL 0.7-8 0.7-8 0.7-8 0.7-8
rprojroot 2.0.4 2.0.4 2.0.4 2.0.4
RSQLite n/a 2.4.1 2.3.7 2.3.5
rstudioapi 0.17.1 0.17.1 0.17.1 0.15.0
rversions n/a 2.1.2 2.1.2 2.1.2
rvest 1.0.4 1.0.4 1.0.4 1.0.4
s2 1.1.8 1.1.9 1.1.8 1.1.8
sass 0.4.9 0.4.10 0.4.9 0.4.8
scales 1.4.0 1.4.0 1.3.0 1.3.0
selectr 0.4-2 0.4-2 0.4-2 0.4-2
sessioninfo n/a 1.2.3 1.2.2 1.2.2
sf 1.0-21 1.0-21 1.0-21 1.0-21
shiny 1.10.0 1.10.0 1.9.1 1.8.0
slam 0.1-55 0.1-55 0.1-55 0.1-55
snakecase 0.11.1 0.11.1 0.11.1 0.11.1
SnowballC 0.7.1 0.7.1 0.7.1 0.7.1
sourcetools 0.1.7-1 0.1.7-1 0.1.7-1 0.1.7-1
spatial 7.3-17 7.3-18 7.3-17 7.3-17
splines 4.4.1 4.5.1 4.4.1 4.3.2
stats 4.4.1 4.5.1 4.4.1 4.3.2
stats4 4.4.1 4.5.1 4.4.1 4.3.2
stringi 1.8.7 1.8.7 1.8.4 1.8.3
stringr 1.5.1 1.5.1 1.5.1 1.5.1
styler 1.10.3 1.10.3 1.10.3 1.10.3
survival 3.6-4 3.8-3 3.6-4 3.5-7
svglite 2.1.3 2.2.1 2.1.3 2.1.3
sys 3.4.3 3.4.3 3.4.3 3.4.2
systemfonts 1.2.1 1.2.3 1.1.0 1.0.5
tcltk 4.4.1 4.5.1 4.4.1 4.3.2
testthat 3.2.3 3.2.3 3.2.3 3.2.3
textshaping 1.0.0 1.0.1 0.4.0 0.3.7
tibble 3.3.0 3.3.0 3.3.0 3.3.0
tidyr 1.3.1 1.3.1 1.3.1 1.3.1
tidyselect 1.2.1 1.2.1 1.2.1 1.2.1
tidytext 0.4.3 0.4.3 0.4.3 0.4.3
tidyverse 2.0.0 2.0.0 2.0.0 2.0.0
timechange 0.3.0 0.3.0 0.3.0 0.3.0
tinytex 0.55 0.57 0.53 0.49
tm 0.7-16 0.7-16 0.7-16 0.7-16
tokenizers 0.3.0 0.3.0 0.3.0 0.3.0
tools 4.4.1 4.5.1 4.4.1 4.3.2
tzdb 0.4.0 0.5.0 0.4.0 0.4.0
units 0.8-7 0.8-7 0.8-7 0.8-7
urlchecker n/a 1.0.1 1.0.1 1.0.1
usethis n/a 3.1.0 3.0.0 2.2.3
utf8 1.2.6 1.2.6 1.2.4 1.2.4
utils 4.4.1 4.5.1 4.4.1 4.3.2
uuid 1.2-1 1.2-1 1.2-1 1.2-0
vctrs 0.6.5 0.6.5 0.6.5 0.6.5
viridis 0.6.5 0.6.5 0.6.5 0.6.5
viridisLite 0.4.2 0.4.2 0.4.2 0.4.2
vistime 1.2.4 1.2.4 1.2.4 1.2.4
vroom 1.6.5 1.6.5 1.6.5 1.6.5
waldo 0.6.1 0.6.1 0.6.1 0.6.1
whisker n/a 0.4.1 0.4.1 0.4.1
withr 3.0.2 3.0.2 3.0.2 3.0.2
wk 0.9.4 0.9.4 0.9.4 0.9.4
wordcloud 2.6 2.6 2.6 2.6
xaputils 1 1 1 1
xfun 0.51 0.52 0.51 0.51
xgxr 1.1.2 1.1.2 1.1.2 1.1.2
xml2 1.3.8 1.3.8 1.3.8 1.3.8
xopen n/a 1.0.1 1.0.1 1.0.0
xtable 1.8-4 1.8-4 1.8-4 1.8-4
yaml 2.3.10 2.3.10 2.3.10 2.3.8
zip n/a 2.3.3 2.3.1 2.3.1
zlibbioc 1.52.0 n/a 1.52.0 1.48.2

Please note that rgdal has recently been retired so has been removed from our list of preinstalled packages.

Updated on November 06, 2025