Pre-installed R Packages
The R console, Built-in Apps and Shiny 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 list | 4.3.2 | 4.1.1 | 4.0.2 |
---|---|---|---|
arrow | 14.0.0.2 | 5.0.0.2 | 1.0.1 |
askpass | 1.2.0 | 1.1 | 1.1 |
assertthat | 0.2.1 | 0.2.1 | 0.2.1 |
backports | 1.4.1 | 1.2.1 | 1.1.10 |
base | 4.3.2 | 4.1.1 | 4.0.2 |
base64enc | 0.1-3 | 0.1-3 | 0.1-3 |
BH | n/a | n/a | 1.72.0-3 |
binom | 1.1-1.1 | n/a | n/a |
BiocManager | 1.30.22 | 1.30.16 | 1.30.15 |
BiocVersion | 3.18.1 | 3.13.1 | 3.12.0 |
bit | 4.0.5 | 4.0.4 | 4.0.4 |
bit64 | 4.0.5 | 4.0.5 | 4.0.5 |
bitops | 1.0-7 | n/a | n/a |
blob | 1.2.4 | 1.2.2 | 1.2.1 |
boot | 1.3-28.1 | 1.3-28 | 1.3-25 |
brew | 1.0-10 | 1.0-6 | 1.0-6 |
brio | 1.1.4 | 1.1.2 | n/a |
broom | 1.0.5 | 0.7.9 | 0.7.1 |
bslib | 0.6.1 | n/a | n/a |
cachem | 1.0.8 | 1.0.6 | n/a |
callr | 3.7.3 | 3.7.0 | 3.4.4 |
caTools | n/a | n/a | n/a |
cellranger | 1.1.0 | 1.1.0 | 1.1.0 |
checkmate | 2.3.1 | n/a | n/a |
class | 7.3-22 | 7.3-19 | 7.3-17 |
classInt | 0.4-10 | n/a | n/a |
cli | 3.6.2 | 3.0.1 | 2.0.2 |
clipr | 0.8.0 | 0.7.1 | 0.7.0 |
clisymbols | n/a | n/a | n/a |
cluster | 2.1.4 | 2.1.2 | 2.1.0 |
codetools | 0.2-19 | 0.2-18 | 0.2-16 |
colorspace | 2.1-0 | 2.0-2 | 1.4-1 |
commonmark | 1.9.0 | 1.7 | 1.7 |
compiler | 4.3.2 | 4.1.1 | 4.0.2 |
CompQuadForm | 1.4.3 | n/a | n/a |
conflicted | 1.2.0 | n/a | n/a |
covr | n/a | n/a | 3.5.1 |
cowplot | 1.1.2 | n/a | n/a |
cpp11 | 0.4.7 | 0.4.0 | 0.2.2 |
crayon | 1.5.2 | 1.4.1 | 1.3.4 |
credentials | 2.0.1 | 1.3.1 | 1.3.0 |
crosstalk | 1.2.1 | n/a | 1.1.0.1 |
curl | 5.2.0 | 4.3.2 | 4.3 |
cyclocomp | n/a | n/a | n/a |
DAAG | n/a | n/a | n/a |
data.table | 1.14.10 | 1.14.2 | 1.13.0 |
datasets | 4.3.2 | 4.1.1 | 4.0.2 |
DBI | 1.1.3 | 1.1.1 | 1.1.0 |
dbplyr | 2.4.0 | 2.1.1 | 2.1.1 |
Deriv | 4.1.3 | n/a | n/a |
desc | 1.4.3 | 1.4.0 | 1.2.0 |
devtools | 2.4.5 | 2.4.2 | 2.3.2 |
diffobj | 0.3.5 | 0.3.4 | n/a |
digest | 0.6.33 | 0.6.28 | 0.6.25 |
docopt | 0.7.1 | 0.7.1 | 0.7.1 |
downlit | 0.4.3 | n/a | n/a |
dplyr | 1.1.4 | 1.0.7 | 1.0.6 |
DT | n/a | n/a | 0.15 |
dtplyr | 1.3.1 | 1.1.0 | 1.0.1 |
duckdb | 0.9.2-1 | n/a | n/a |
e1071 | 1.7-14 | n/a | n/a |
ellipsis | 0.3.2 | 0.3.2 | 0.3.2 |
evaluate | 0.23 | 0.14 | 0.14 |
Exact | 3.2 | n/a | n/a |
expm | 0.999-9 | n/a | n/a |
fansi | 1.0.6 | 0.5.0 | 0.4.1 |
farver | 2.1.1 | 2.1.0 | 2.0.3 |
fastmap | 1.1.1 | 1.1.0 | 1.0.1 |
feather | n/a | n/a | n/a |
foghorn | n/a | n/a | n/a |
fontawesome | 0.5.2 | 0.2.2 | n/a |
forcats | 1.0.0 | 0.5.1 | 0.5.0 |
foreign | 0.8-85 | 0.8-81 | 0.8-80 |
formatR | n/a | n/a | n/a |
Formula | 1.2-5 | n/a | n/a |
fs | 1.6.3 | 1.5.0 | 1.5.0 |
fst | 0.9.8 | 0.9.4 | 0.9.4 |
fstcore | 0.9.18 | n/a | n/a |
gargle | 1.5.2 | 1.2.0 | n/a |
generics | 0.1.3 | 0.1.0 | 0.0.2 |
geobr | 1.8.2 | n/a | n/a |
gert | 2.0.1 | 1.4.1 | 0.3 |
ggplot2 | 3.4.4 | 3.3.5 | 3.3.3 |
ggrepel | 0.9.5 | n/a | n/a |
ggvis | 0.4.8 | 0.4.7 | 0.4.7 |
gh | 1.4.0 | 1.3.0 | 1.1.0 |
git2r | n/a | n/a | 0.27.1 |
gitcreds | 0.1.2 | 0.1.1 | n/a |
gld | 2.6.6 | n/a | n/a |
glue | 1.6.2 | 1.4.2 | 1.4.2 |
gmailr | n/a | n/a | n/a |
googledrive | 2.1.1 | 2.0.0 | n/a |
googlesheets4 | 1.1.1 | 1.0.0 | n/a |
graphics | 4.3.2 | 4.1.1 | 4.0.2 |
grDevices | 4.3.2 | 4.1.1 | 4.0.2 |
grid | 4.3.2 | 4.1.1 | 4.0.2 |
gridExtra | 2.3 | n/a | n/a |
gtable | 0.3.4 | 0.3.0 | 0.3.0 |
haven | 2.5.4 | 2.4.3 | 2.3.1 |
hflights | 0.1 | 0.1 | 0.1 |
highlight | n/a | n/a | n/a |
highr | 0.10 | 0.9 | 0.8 |
Hmisc | 5.1-1 | n/a | n/a |
hms | 1.1.3 | 1.1.1 | 0.5.3 |
htmlTable | 2.4.2 | n/a | n/a |
htmltools | 0.5.7 | 0.5.2 | 0.5.0 |
htmlwidgets | 1.6.4 | 1.5.4 | 1.5.2 |
httpuv | 1.6.13 | 1.6.3 | 1.5.4 |
httr | 1.4.7 | 1.4.2 | 1.4.2 |
httr2 | 1.0.0 | n/a | n/a |
hunspell | n/a | n/a | n/a |
ids | 1.0.1 | 1.0.1 | n/a |
igraph | n/a | n/a | n/a |
ini | 0.3.1 | 0.3.1 | 0.3.1 |
IRdisplay | 1.1 | 1 | 1 |
IRkernel | 1.3.2 | 1.2 | 1.1.1 |
isoband | 0.2.7 | 0.2.5 | 0.2.2 |
jquerylib | 0.1.4 | 0.1.4 | n/a |
jsonlite | 1.8.8 | 1.7.2 | 1.7.1 |
KernSmooth | 2.23-22 | 2.23-20 | 2.23-17 |
knitr | 1.45 | 1.36 | 1.33 |
labeling | 0.4.3 | 0.4.2 | 0.3 |
Lahman | 11.0-0 | 9.0-0 | 8.0-0 |
later | 1.3.2 | 1.3.0 | 1.1.0.1 |
lattice | 0.21-9 | 0.20-45 | 0.20-41 |
lazyeval | 0.2.2 | n/a | 0.2.2 |
lifecycle | 1.0.4 | 1.0.1 | 1.0.0 |
lintr | n/a | n/a | n/a |
littler | 0.3.19 | 0.3.13 | 0.3.11 |
lme4 | 1.1-35.1 | n/a | n/a |
lmom | 3.0 | n/a | n/a |
lubridate | 1.9.3 | 1.7.10 | 1.7.9 |
magrittr | 2.0.3 | 2.0.1 | 1.5 |
markdown | n/a | n/a | 1.1 |
MASS | 7.3-60 | 7.3-54 | 7.3-51.6 |
mathjaxr | 1.6-0 | n/a | n/a |
Matrix | 1.6-1.1 | 1.3-4 | 1.2-18 |
memoise | 2.0.1 | 2.0.0 | 1.1.0 |
meta | 7.0-0 | n/a | n/a |
metadat | 1.2-0 | n/a | n/a |
metafor | 4.4-0 | n/a | n/a |
methods | 4.3.2 | 4.1.1 | 4.0.2 |
mgcv | 1.9-0 | 1.8-37 | 1.8-31 |
microbenchmark | 1.4.10 | 1.4-7 | 1.4-7 |
mime | 0.12 | 0.12 | 0.9 |
miniUI | 0.1.1.1 | n/a | n/a |
minipack.lm | 1.2-4 | n/a | n/a |
minqa | 1.2.6 | n/a | n/a |
mockery | n/a | 0.4.2 | 0.4.2 |
modelr | 0.1.11 | 0.1.8 | 0.1.8 |
munsell | 0.5.0 | 0.5.0 | 0.5.0 |
mvtnorm | 1.2-4 | n/a | n/a |
nlme | 3.1-163 | 3.1-153 | 3.1-148 |
nloptr | 2.0.3 | n/a | n/a |
nnet | 7.3-19 | 7.3-16 | 7.3-14 |
numDeriv | 2016.8-1.1 | n/a | n/a |
nycflights13 | 1.0.2 | 1.0.2 | 1.0.1 |
openssl | 2.1.1 | 1.4.5 | 1.4.3 |
pander | 0.6.5 | n/a | n/a |
parallel | 4.3.2 | 4.1.1 | 4.0.2 |
parallely | 1.36.0 | n/a | n/a |
parsedate | n/a | n/a | n/a |
pbapply | 1.7-2 | n/a | n/a |
pbdZMQ | 0.3-11 | 0.3-5 | 0.3-3 |
pillar | 1.9.0 | 1.6.3 | 1.6.1 |
pingr | n/a | n/a | n/a |
PivotalR | n/a | n/a | n/a |
pkgbuild | 1.4.3 | 1.2.0 | 1.1.0 |
pkgconfig | 2.0.3 | 2.0.3 | 2.0.3 |
pkgdown | 2.0.7 | n/a | n/a |
pkgload | 1.3.3 | 1.2.2 | 1.1.0 |
plogr | 0.2.0 | 0.2.0 | 0.2.0 |
plotly | 4.10.4 | n/a | n/a |
plyr | n/a | n/a | n/a |
png | 0.1-8 | n/a | n/a |
praise | 1.0.0 | 1.0.0 | 1.0.0 |
prettyunits | 1.2.0 | 1.1.1 | 1.1.1 |
processx | 3.8.3 | 3.5.2 | 3.4.4 |
profvis | 0.3.8 | 0.3.7 | 0.3.7 |
progress | 1.2.3 | 1.2.2 | 1.2.2 |
promises | 1.2.1 | 1.2.0.1 | 1.1.1 |
proxy | 0.4-27 | n/a | n/a |
ps | 1.7.5 | 1.6.0 | 1.3.4 |
purrr | 1.0.2 | 0.3.4 | 0.3.4 |
R6 | 2.5.1 | 2.5.1 | 2.4.1 |
ragg | 1.2.7 | n/a | n/a |
rappdirs | 0.3.3 | 0.3.3 | n/a |
rcmdcheck | 1.4.0 | 1.4.0 | 1.3.3 |
RColorBrewer | 1.1-3 | 1.1-2 | 1.1-2 |
Rcpp | 1.0.11 | 1.0.7 | 1.0.5 |
RcppEigen | 0.3.3.9.4 | n/a | n/a |
RCurl | 1.98-1.14 | n/a | n/a |
readr | 2.1.4 | 2.0.2 | 1.4.0 |
readxl | 1.4.3 | 1.3.1 | 1.3.1 |
rematch | 2.0.0 | 1.0.1 | 1.0.1 |
rematch2 | 2.1.2 | 2.1.2 | 2.1.2 |
remotes | 2.4.2.1 | 2.4.1 | 2.2.0 |
repr | 1.1.6 | 1.1.3 | 1.1.3 |
reprex | 2.0.2 | 2.0.1 | 0.3.0 |
reshape2 | n/a | n/a | n/a |
rex | n/a | n/a | 1.2.0 |
Rhtslib | 2.4.0 | 1.24.0 | 1.22.0 |
rhub | n/a | n/a | n/a |
rlang | 1.1.2 | 0.4.11 | 0.4.11 |
RMariaDB | 1.3.1 | 1.1.2 | 1.0.10 |
rmarkdown | 2.25 | 2.11 | 2.4 |
RMySQL | n/a | n/a | n/a |
rootSolve | 1.8.2.4 | n/a | n/a |
roxygen2 | 7.2.3 | 7.1.2 | 7.1.1 |
rpart | 4.1.21 | 4.1-15 | 4.1-15 |
RPostgres | 1.4.6 | 1.4.1 | 1.2.1 |
RPostgreSQL | 0.7-6 | 0.7 | 0.6-2 |
rprojroot | 2.0.4 | 2.0.2 | 1.3-2 |
rsconnect | n/a | n/a | n/a |
RSQLite | 2.3.4 | 2.2.8 | 2.2.1 |
rstudioapi | 0.15.0 | 0.13 | 0.11 |
rversions | 2.1.2 | 2.1.1 | 2.0.2 |
rvest | 1.0.3 | 1.0.1 | 0.3.6 |
s2 | 1.1.6 | n/a | n/a |
sass | 0.4.8 | 0.4.0 | n/a |
scales | 1.3.0 | 1.1.1 | 1.1.1 |
selectr | 0.4-2 | 0.4-2 | 0.4-2 |
sessioninfo | 1.2.2 | 1.1.1 | 1.1.1 |
sf | 1.0-15 | n/a | n/a |
shiny | 1.8.0 | 1.7.1 | 1.5.0 |
sourcetools | 0.1.7-1 | 0.1.7 | 0.1.7 |
sp | n/a | 1.4-5 | 1.4-5 |
spatial | 7.3-17 | 7.3-14 | 7.3-12 |
spelling | n/a | n/a | n/a |
splines | 4.3.2 | 4.1.1 | 4.0.2 |
stats | 4.3.2 | 4.1.1 | 4.0.2 |
stats4 | 4.3.2 | 4.1.1 | 4.0.2 |
stringdist | n/a | n/a | n/a |
stringi | 1.8.3 | 1.7.5 | 1.5.3 |
stringr | 1.5.1 | 1.4.0 | 1.4.0 |
survival | 3.5-7 | 3.2-13 | 3.1-12 |
sys | 3.4.2 | 3.4 | 3.4 |
systemfonts | 1.0.5 | n/a | n/a |
tcltk | 4.3.2 | 4.1.1 | 4.0.2 |
testit | n/a | n/a | n/a |
testthat | 3.2.1 | 3.1.0 | 2.3.2 |
textshaping | 0.3.7 | n/a | n/a |
tibble | 3.2.1 | 3.1.5 | 3.1.2 |
tidyr | 1.3.0 | 1.1.4 | 1.1.2 |
tidyselect | 1.2.0 | 1.1.1 | 1.1.0 |
tidyverse | 2.0.0 | 1.3.1 | 1.3.0 |
timechange | 0.2.0 | n/a | n/a |
tinytex | 0.49 | 0.34 | 0.26 |
tools | 4.3.2 | 4.1.1 | 4.0.2 |
tzdb | 0.4.0 | 0.1.2 | n/a |
units | 0.8-5 | n/a | n/a |
urlchecker | 1.0.1 | n/a | n/a |
usethis | 2.2.2 | 2.0.1 | 1.6.3 |
utf8 | 1.2.4 | 1.2.2 | 1.1.4 |
utils | 4.3.2 | 4.1.1 | 4.0.2 |
uuid | 1.1-1 | 0.1-4 | 0.1-4 |
vctrs | 0.6.5 | 0.3.8 | 0.3.8 |
viridis | 0.6.4 | n/a | n/a |
viridisLite | 0.4.2 | 0.4.0 | 0.3.0 |
vistime | 1.2.4 | n/a | n/a |
vroom | 1.6.5 | 1.5.5 | 1.3.2 |
waldo | 0.5.2 | 0.3.1 | n/a |
whisker | 0.4.1 | 0.4 | 0.4 |
whoami | n/a | n/a | n/a |
withr | 2.5.2 | 2.4.2 | 2.3.0 |
wk | 0.9.1 | n/a | n/a |
xaputils | 1.0 | 1 | 1 |
xfun | 0.41 | 0.26 | 0.23 |
xgxr | 1.1.2 | n/a | n/a |
XML | n/a | n/a | n/a |
xml2 | 1.3.6 | 1.3.2 | 1.3.2 |
lparsedata | n/a | n/a | n/a |
xopen | 1.0.0 | 1.0.0 | 1.0.0 |
xtable | 1.8-4 | 1.8-4 | 1.8-4 |
yaml | 2.3.8 | 2.2.1 | 2.2.1 |
zip | 2.3.0 | 2.2.0 | n/a |
zlibbioc | 1.48.0 | 1.38.0 | 1.36.0 |
Please note that rgdal
has recently been retired so has been removed from our list of preinstalled packages.