R_for_Dumies

Ricardo R. Palma
Setiembre 2019

Doctorado Interinstitucional Di3

Universidad Nacional de Salta - Facultad de Ingeniería

Sitio Oficial

http://www.cran.r-project.org/ Básica

For more details on authoring R presentations please visit https://support.rstudio.com/hc/en-us/articles/200486468.

Uso Básico

R se puede usar como una calculadora avanzada en el escritorio de windows / android.

3+5
[1] 8
a<-3 
b<-5 
a+b
[1] 8
sin(pi/2)
[1] 1
sqrt(9)
[1] 3

Cada operación queda registrada en el historial en pantalla.

Filosofía Matricial

  • Estructura de Datos
  • Variables Indexadas
  • Definicion de Funciones

Estructura de Datos

Variables como a <-3 pueden ser valores numéricos, pero R los interpreta como matrices. a en este caso es una matriz de 1x1 con el valor guardado 3 . Se emplea la flecha y no el signo igual para asignar a efectos de no confundir con la operación de comparación que sí usa =.

Existen tres estructuras maticiales y son objetos distintos

  • vectores (matriz de una fila o columna)
  • listas (matriz con caracteres alfabeticos)
  • data-frame (matriz con elementos numéricos y alfabéticos)

Vectores

Son las estructuras de datos más simples y están obligadas a contener datos de la misma especie.

car_name <-c("Honda","BMW","Ferrari")
car_color =c("Black","Blue","Red")
car_cc =c(2000,3400,4000)

car_name
[1] "Honda"   "BMW"     "Ferrari"

Listas

Son más versátiles que los vectores, pero pueden tener elementos numéricos y alfabéticos que provienen de vectores disímiles. Piense en ellos como vector de vectores.

cars <-list(name =c("Honda","BMW","Ferrari"),
color =c("Black","Blue","Red"),
cc =c(2000,3400,4000))

cars
$name
[1] "Honda"   "BMW"     "Ferrari"

$color
[1] "Black" "Blue"  "Red"  

$cc
[1] 2000 3400 4000

Matrices

Son estructuras como las listas, pero limitadas sólo a datos numéticos. Pueden venir de aparatos que emiten constantemente valores (caja registradora) o fuentes de web (Servicio Meteorológico), incluso pueden venir del teclado usando la función scan()

mdat <-matrix(c(1,2,3, 11,12,13), nrow =2, ncol =3, byrow =TRUE,
dimnames =list(c("Fila1", "Fila2"),
c("Col1", "Col2", "Client3")))
mdat
      Col1 Col2 Client3
Fila1    1    2       3
Fila2   11   12      13

DataFrame

Los dataframe extienden las matrices con la capacidad adicional de contener tipos de datos heterogéneos. En un dataframe, puede almacenar variables de caracteres, numéricas y de factores en diferentes columnas del mismo df. En casi todas las tareas de análisis de datos, con filas y columnas de datos, df se presenta como una opción natural para almacenar los datos y maneja mucho mejor la memoria y recursos del hardware

L3 <-LETTERS[1:3]
fac <-sample(L3, 10, replace =TRUE)
df <-data.frame(x =1, y =1:10, fac = fac)

DataFrame 2

class(df$x)
[1] "numeric"
class(df$y)
[1] "integer"
class(df$fac)
[1] "factor"

Variables Indexadas (Subseting)

R tiene uno de los operadores de subconjunto más avanzados, potentes y rápidos en comparación con cualquier otro lenguaje de programación. Es poderoso hasta el punto de que, salvo en algunos casos que discutiremos en la siguiente sección, no existe una construcción de bucle for o while sino que se trabaja todo maticialmente, aunque R explícitamente proporciona estas palabras reservadas si es necesario.

Subseting 2

Aunque es muy poderoso, sintácticamente podría llegar a ser una pesadilla o podría aparecer un error grave si no se presta atención cuidadosa al colocar el número requerido de paréntesis, corchetes y comas. Los operadores [, [[y $ se usan para subconjuntos, dependiendo de qué estructura de datos contiene los datos. También es posible combinar el subconjunto con la asignación para realizar una función realmente complicada con muy pocas líneas de código.

Subseting en Vectores

Para los vectores, la subconjunto podría hacerse haciendo referencia al índice respectivo de los elementos almacenados en un vector. Por ejemplo, car_name [c (1,2)] devolverá los elementos almacenados en el índice 1 y 2, y car_name [-2] devolverá todos los elementos excepto el segundo. También es posible utilizar operadores binarios para indicar al vector que recupere o no un elemento.

car_name <-c ("Honda", "BMW", "Ferrari")
#Selecciona el 1 ° y el 2 ° elemento del vector
car_name [c (1,2)]
[1] "Honda" "BMW"  

Subseting Vectores 2

#Seleciona todo, salve el 2do elemento 
car_name[-2]
[1] "Honda"   "Ferrari"

Otra forma de seleccionar el 2do elemento

car_name[c(FALSE,TRUE,FALSE)]
[1] "BMW"

Subseting en Listas

En listas es similar al subseting en un vector; sin embargo, dado que una lista es una colección de muchos vectores, se debe usar corchetes dobles para recuperar un elemento de la lista. Por ejemplo, cars [2] recupera el segundo vector completo de la lista y cars [[c (2,1)]] recupera el primer elemento del segundo vector.

cars <-list(name =c("Honda","BMW","Ferrari"),
color =c("Black","Blue","Red"),
cc =c(2000,3400,4000))

cars[2]$color
[1] "Black" "Blue"  "Red"  
cars[[c(2,1)]]
[1] "Black"

Sumario

summary(cars)
      Length Class  Mode     
name  3      -none- character
color 3      -none- character
cc    3      -none- numeric  

Cuidado ! , existe un dataset llamado cars. Si definicmos una variable con el nombre de un dataset podemos tener problemas de confusión.

Cargar Paquetes

ejecute el comando data() para ver que tiene disponible ejecute data(package = “datasets”) para ver el contenido del datos del paquete datasets

*tienes que instalar antes el paquete con:

*install.packages(“dataset”)

*y cargarlo con

*library(dataset)

Ver paquetes instalados

installed.packages()
                          Package                    
abind                     "abind"                    
acepack                   "acepack"                  
adabag                    "adabag"                   
alabama                   "alabama"                  
alluvial                  "alluvial"                 
askpass                   "askpass"                  
assertthat                "assertthat"               
backports                 "backports"                
base64enc                 "base64enc"                
bgmfiles                  "bgmfiles"                 
BH                        "BH"                       
bibliometrix              "bibliometrix"             
bibtex                    "bibtex"                   
BiocGenerics              "BiocGenerics"             
BiocInstaller             "BiocInstaller"            
bit                       "bit"                      
bit64                     "bit64"                    
bitops                    "bitops"                   
blob                      "blob"                     
bookdown                  "bookdown"                 
brew                      "brew"                     
broom                     "broom"                    
callr                     "callr"                    
car                       "car"                      
carData                   "carData"                  
caTools                   "caTools"                  
cellranger                "cellranger"               
checkmate                 "checkmate"                
classInt                  "classInt"                 
cli                       "cli"                      
clipr                     "clipr"                    
colorspace                "colorspace"               
corrplot                  "corrplot"                 
cowplot                   "cowplot"                  
crayon                    "crayon"                   
crosstalk                 "crosstalk"                
crul                      "crul"                     
csvread                   "csvread"                  
Cubist                    "Cubist"                   
curl                      "curl"                     
data.table                "data.table"               
data.tree                 "data.tree"                
DBI                       "DBI"                      
dendextend                "dendextend"               
DEoptim                   "DEoptim"                  
DiagrammeR                "DiagrammeR"               
digest                    "digest"                   
downloader                "downloader"               
dplyr                     "dplyr"                    
DT                        "DT"                       
dygraphs                  "dygraphs"                 
e1071                     "e1071"                    
ECOSolveR                 "ECOSolveR"                
eha                       "eha"                      
ellipsis                  "ellipsis"                 
evaluate                  "evaluate"                 
expm                      "expm"                     
extrafont                 "extrafont"                
extrafontdb               "extrafontdb"              
factoextra                "factoextra"               
FactoMineR                "FactoMineR"               
fansi                     "fansi"                    
farver                    "farver"                   
fastmatch                 "fastmatch"                
FinCal                    "FinCal"                   
fitdistrplus              "fitdistrplus"             
flexdashboard             "flexdashboard"            
forcats                   "forcats"                  
foreign                   "foreign"                  
Formula                   "Formula"                  
fs                        "fs"                       
gbRd                      "gbRd"                     
gdalUtils                 "gdalUtils"                
gdtools                   "gdtools"                  
genalg                    "genalg"                   
generics                  "generics"                 
geojsonR                  "geojsonR"                 
geosphere                 "geosphere"                
gepaf                     "gepaf"                    
ggforce                   "ggforce"                  
ggmap                     "ggmap"                    
ggplot2                   "ggplot2"                  
ggpubr                    "ggpubr"                   
ggraph                    "ggraph"                   
ggrepel                   "ggrepel"                  
ggsci                     "ggsci"                    
ggsignif                  "ggsignif"                 
gistr                     "gistr"                    
globalOptTests            "globalOptTests"           
glue                      "glue"                     
graph                     "graph"                    
gridExtra                 "gridExtra"                
gtable                    "gtable"                   
gWidgets                  "gWidgets"                 
gWidgetsRGtk2             "gWidgetsRGtk2"            
haven                     "haven"                    
highr                     "highr"                    
Hmisc                     "Hmisc"                    
hms                       "hms"                      
htmlTable                 "htmlTable"                
htmltools                 "htmltools"                
htmlwidgets               "htmlwidgets"              
httpcode                  "httpcode"                 
httpuv                    "httpuv"                   
httr                      "httr"                     
hunspell                  "hunspell"                 
igraph                    "igraph"                   
influenceR                "influenceR"               
isoband                   "isoband"                  
ISOcodes                  "ISOcodes"                 
janeaustenr               "janeaustenr"              
jpeg                      "jpeg"                     
jsonlite                  "jsonlite"                 
kernlab                   "kernlab"                  
kknn                      "kknn"                     
knitr                     "knitr"                    
labeling                  "labeling"                 
labelled                  "labelled"                 
later                     "later"                    
latticeExtra              "latticeExtra"             
lazyeval                  "lazyeval"                 
leaflet                   "leaflet"                  
leaflet.extras            "leaflet.extras"           
leafpop                   "leafpop"                  
lme4                      "lme4"                     
lmtest                    "lmtest"                   
lpSolve                   "lpSolve"                  
lpSolveAPI                "lpSolveAPI"               
lsei                      "lsei"                     
lubridate                 "lubridate"                
magrittr                  "magrittr"                 
maps                      "maps"                     
maptools                  "maptools"                 
markdown                  "markdown"                 
MatrixModels              "MatrixModels"             
matrixStats               "matrixStats"              
mc2d                      "mc2d"                     
mclust                    "mclust"                   
mco                       "mco"                      
mda                       "mda"                      
memoise                   "memoise"                  
mime                      "mime"                     
minqa                     "minqa"                    
mlogit                    "mlogit"                   
modelr                    "modelr"                   
modeltools                "modeltools"               
munsell                   "munsell"                  
nabor                     "nabor"                    
network                   "network"                  
networkD3                 "networkD3"                
nloptr                    "nloptr"                   
NLP                       "NLP"                      
npsurv                    "npsurv"                   
opencage                  "opencage"                 
openssl                   "openssl"                  
openxlsx                  "openxlsx"                 
optimx                    "optimx"                   
osmar                     "osmar"                    
packrat                   "packrat"                  
party                     "party"                    
pbkrtest                  "pbkrtest"                 
PerformanceAnalytics      "PerformanceAnalytics"     
pillar                    "pillar"                   
pkgconfig                 "pkgconfig"                
plogr                     "plogr"                    
plotly                    "plotly"                   
pls                       "pls"                      
plyr                      "plyr"                     
png                       "png"                      
polyclip                  "polyclip"                 
polynom                   "polynom"                  
prettyunits               "prettyunits"              
processx                  "processx"                 
progress                  "progress"                 
promises                  "promises"                 
pryr                      "pryr"                     
ps                        "ps"                       
purrr                     "purrr"                    
qcc                       "qcc"                      
qmap                      "qmap"                     
qualityTools              "qualityTools"             
quantmod                  "quantmod"                 
quantreg                  "quantreg"                 
questionr                 "questionr"                
R.methodsS3               "R.methodsS3"              
R.oo                      "R.oo"                     
R.utils                   "R.utils"                  
R6                        "R6"                       
raster                    "raster"                   
rbgm                      "rbgm"                     
rbokeh                    "rbokeh"                   
rCarto                    "rCarto"                   
RColorBrewer              "RColorBrewer"             
Rcpp                      "Rcpp"                     
RcppArmadillo             "RcppArmadillo"            
RcppEigen                 "RcppEigen"                
RcppParallel              "RcppParallel"             
RCurl                     "RCurl"                    
Rdpack                    "Rdpack"                   
readr                     "readr"                    
readxl                    "readxl"                   
rematch                   "rematch"                  
reprex                    "reprex"                   
reshape2                  "reshape2"                 
reticulate                "reticulate"               
rgdal                     "rgdal"                    
rgeos                     "rgeos"                    
rgexf                     "rgexf"                    
RgoogleMaps               "RgoogleMaps"              
RGraphics                 "RGraphics"                
Rgraphviz                 "Rgraphviz"                
rio                       "rio"                      
RISmed                    "RISmed"                   
RJSONIO                   "RJSONIO"                  
rlang                     "rlang"                    
rmarkdown                 "rmarkdown"                
rmdformats                "rmdformats"               
rminer                    "rminer"                   
ROI                       "ROI"                      
ROI.models.globalOptTests "ROI.models.globalOptTests"
ROI.models.miplib         "ROI.models.miplib"        
ROI.models.netlib         "ROI.models.netlib"        
ROI.plugin.alabama        "ROI.plugin.alabama"       
ROI.plugin.deoptim        "ROI.plugin.deoptim"       
ROI.plugin.ecos           "ROI.plugin.ecos"          
ROI.plugin.glpk           "ROI.plugin.glpk"          
ROI.plugin.ipop           "ROI.plugin.ipop"          
ROI.plugin.lpsolve        "ROI.plugin.lpsolve"       
ROI.plugin.msbinlp        "ROI.plugin.msbinlp"       
ROI.plugin.neos           "ROI.plugin.neos"          
ROI.plugin.optimx         "ROI.plugin.optimx"        
Rook                      "Rook"                     
rprojroot                 "rprojroot"                
RQDA                      "RQDA"                     
rriskDistributions        "rriskDistributions"       
rsconnect                 "rsconnect"                
rscopus                   "rscopus"                  
RSpectra                  "RSpectra"                 
RSQLite                   "RSQLite"                  
rstudioapi                "rstudioapi"               
RTriangle                 "RTriangle"                
Rttf2pt1                  "Rttf2pt1"                 
rtweet                    "rtweet"                   
rvest                     "rvest"                    
sandwich                  "sandwich"                 
satellite                 "satellite"                
scales                    "scales"                   
scatterplot3d             "scatterplot3d"            
selectr                   "selectr"                  
sf                        "sf"                       
shiny                     "shiny"                    
shinycssloaders           "shinycssloaders"          
shinythemes               "shinythemes"              
simmer                    "simmer"                   
simmer.plot               "simmer.plot"              
SixSigma                  "SixSigma"                 
SnowballC                 "SnowballC"                
sourcetools               "sourcetools"              
sp                        "sp"                       
spacyr                    "spacyr"                   
SparseM                   "SparseM"                  
spData                    "spData"                   
spDataLarge               "spDataLarge"              
statmod                   "statmod"                  
stopwords                 "stopwords"                
stringdist                "stringdist"               
stringi                   "stringi"                  
stringr                   "stringr"                  
strucchange               "strucchange"              
survival                  "survival"                 
svglite                   "svglite"                  
sys                       "sys"                      
TH.data                   "TH.data"                  
tibble                    "tibble"                   
tictoc                    "tictoc"                   
tidyr                     "tidyr"                    
tidyselect                "tidyselect"               
tidytext                  "tidytext"                 
tidyverse                 "tidyverse"                
timevis                   "timevis"                  
tinytex                   "tinytex"                  
tm                        "tm"                       
tokenizers                "tokenizers"               
triebeard                 "triebeard"                
tweenr                    "tweenr"                   
twitteR                   "twitteR"                  
units                     "units"                    
urltools                  "urltools"                 
utf8                      "utf8"                     
vctrs                     "vctrs"                    
viridis                   "viridis"                  
viridisLite               "viridisLite"              
visNetwork                "visNetwork"               
webshot                   "webshot"                  
widyr                     "widyr"                    
withr                     "withr"                    
wordcloud                 "wordcloud"                
xfun                      "xfun"                     
xgboost                   "xgboost"                  
XML                       "XML"                      
xmlrpc2                   "xmlrpc2"                  
xtable                    "xtable"                   
yaml                      "yaml"                     
zeallot                   "zeallot"                  
zip                       "zip"                      
zoo                       "zoo"                      
eha                       "eha"                      
mc2d                      "mc2d"                     
rriskDistributions        "rriskDistributions"       
survival                  "survival"                 
abind                     "abind"                    
acepack                   "acepack"                  
ade4                      "ade4"                     
adegenet                  "adegenet"                 
adegraphics               "adegraphics"              
adephylo                  "adephylo"                 
AER                       "AER"                      
afex                      "afex"                     
Amelia                    "Amelia"                   
AMORE                     "AMORE"                    
animation                 "animation"                
ape                       "ape"                      
arm                       "arm"                      
aroma.light               "aroma.light"              
assertthat                "assertthat"               
backports                 "backports"                
base64enc                 "base64enc"                
BatchJobs                 "BatchJobs"                
BayesFactor               "BayesFactor"              
bayesm                    "bayesm"                   
BBmisc                    "BBmisc"                   
bbmle                     "bbmle"                    
beeswarm                  "beeswarm"                 
BiasedUrn                 "BiasedUrn"                
bindr                     "bindr"                    
bindrcpp                  "bindrcpp"                 
bio3d                     "bio3d"                    
bit                       "bit"                      
bit64                     "bit64"                    
bitops                    "bitops"                   
blob                      "blob"                     
blockmodeling             "blockmodeling"            
BMS                       "BMS"                      
bold                      "bold"                     
BoolNet                   "BoolNet"                  
BradleyTerry2             "BradleyTerry2"            
brew                      "brew"                     
brglm                     "brglm"                    
broom                     "broom"                    
ca                        "ca"                       
Cairo                     "Cairo"                    
cairoDevice               "cairoDevice"              
calibrate                 "calibrate"                
car                       "car"                      
carData                   "carData"                  
caret                     "caret"                    
caTools                   "caTools"                  
cellranger                "cellranger"               
checkmate                 "checkmate"                
chron                     "chron"                    
cli                       "cli"                      
clusterGeneration         "clusterGeneration"        
cmprsk                    "cmprsk"                   
coda                      "coda"                     
coin                      "coin"                     
colorspace                "colorspace"               
combinat                  "combinat"                 
contfrac                  "contfrac"                 
conting                   "conting"                  
corpcor                   "corpcor"                  
crayon                    "crayon"                   
crosstalk                 "crosstalk"                
crul                      "crul"                     
cubature                  "cubature"                 
curl                      "curl"                     
CVST                      "CVST"                     
data.table                "data.table"               
date                      "date"                     
DBI                       "DBI"                      
DBItest                   "DBItest"                  
dbplyr                    "dbplyr"                   
ddalpha                   "ddalpha"                  
deal                      "deal"                     
deldir                    "deldir"                   
DEoptimR                  "DEoptimR"                 
desc                      "desc"                     
deSolve                   "deSolve"                  
devtools                  "devtools"                 
DiagnosisMed              "DiagnosisMed"             
dichromat                 "dichromat"                
digest                    "digest"                   
dimRed                    "dimRed"                   
distory                   "distory"                  
DNAcopy                   "DNAcopy"                  
doMC                      "doMC"                     
doParallel                "doParallel"               
DoseFinding               "DoseFinding"              
doSNOW                    "doSNOW"                   
dotCall64                 "dotCall64"                
downloader                "downloader"               
dplyr                     "dplyr"                    
DRR                       "DRR"                      
DT                        "DT"                       
dynlm                     "dynlm"                    
e1071                     "e1071"                    
eco                       "eco"                      
ecodist                   "ecodist"                  
effects                   "effects"                  
ellipse                   "ellipse"                  
elliptic                  "elliptic"                 
energy                    "energy"                   
Epi                       "Epi"                      
epibasix                  "epibasix"                 
epicalc                   "epicalc"                  
epiR                      "epiR"                     
epitools                  "epitools"                 
eRm                       "eRm"                      
estimability              "estimability"             
etm                       "etm"                      
evaluate                  "evaluate"                 
evd                       "evd"                      
expm                      "expm"                     
FactoMineR                "FactoMineR"               
fail                      "fail"                     
fAsianOptions             "fAsianOptions"            
fAssets                   "fAssets"                  
fastcluster               "fastcluster"              
fastICA                   "fastICA"                  
fastmatch                 "fastmatch"                
fBasics                   "fBasics"                  
fBonds                    "fBonds"                   
fCopulae                  "fCopulae"                 
fExoticOptions            "fExoticOptions"           
fExtremes                 "fExtremes"                
fGarch                    "fGarch"                   
fields                    "fields"                   
filehash                  "filehash"                 
fImport                   "fImport"                  
fitbitScraper             "fitbitScraper"            
fitcoach                  "fitcoach"                 
flashClust                "flashClust"               
fMultivar                 "fMultivar"                
fNonlinear                "fNonlinear"               
fOptions                  "fOptions"                 
forcats                   "forcats"                  
foreach                   "foreach"                  
formatR                   "formatR"                  
Formula                   "Formula"                  
fPortfolio                "fPortfolio"               
fRegression               "fRegression"              
fTrading                  "fTrading"                 
fUnitRoots                "fUnitRoots"               
futile.logger             "futile.logger"            
futile.options            "futile.options"           
future                    "future"                   
g.data                    "g.data"                   
gam                       "gam"                      
gbm                       "gbm"                      
gdata                     "gdata"                    
geepack                   "geepack"                  
GenABEL                   "GenABEL"                  
GenABEL.data              "GenABEL.data"             
genetics                  "genetics"                 
getopt                    "getopt"                   
ggplot2                   "ggplot2"                  
ggvis                     "ggvis"                    
git2r                     "git2r"                    
glmnet                    "glmnet"                   
globals                   "globals"                  
glue                      "glue"                     
gmaps                     "gmaps"                    
gmodels                   "gmodels"                  
gnm                       "gnm"                      
goftest                   "goftest"                  
googleVis                 "googleVis"                
gower                     "gower"                    
gplots                    "gplots"                   
gregmisc                  "gregmisc"                 
gridBase                  "gridBase"                 
gridExtra                 "gridExtra"                
gsl                       "gsl"                      
gss                       "gss"                      
gtable                    "gtable"                   
gtools                    "gtools"                   
Guerry                    "Guerry"                   
haplo.stats               "haplo.stats"              
haven                     "haven"                    
hdf5                      "hdf5"                     
hexbin                    "hexbin"                   
highr                     "highr"                    
Hmisc                     "Hmisc"                    
hms                       "hms"                      
htmlTable                 "htmlTable"                
htmltools                 "htmltools"                
htmlwidgets               "htmlwidgets"              
httpcode                  "httpcode"                 
httpuv                    "httpuv"                   
httr                      "httr"                     
hwriter                   "hwriter"                  
hypergeo                  "hypergeo"                 
igraph                    "igraph"                   
inline                    "inline"                   
int64                     "int64"                    
ipred                     "ipred"                    
irlba                     "irlba"                    
ISOcodes                  "ISOcodes"                 
ISOweek                   "ISOweek"                  
iterators                 "iterators"                
its                       "its"                      
jsonlite                  "jsonlite"                 
kernlab                   "kernlab"                  
knitr                     "knitr"                    
labeling                  "labeling"                 
lambda.r                  "lambda.r"                 
latticeExtra              "latticeExtra"             
lava                      "lava"                     
lavaan                    "lavaan"                   
lazyeval                  "lazyeval"                 
leaps                     "leaps"                    
LearnBayes                "LearnBayes"               
lexRankr                  "lexRankr"                 
lhs                       "lhs"                      
listenv                   "listenv"                  
littler                   "littler"                  
lme4                      "lme4"                     
lmerTest                  "lmerTest"                 
lmtest                    "lmtest"                   
logspline                 "logspline"                
lpSolve                   "lpSolve"                  
lsmeans                   "lsmeans"                  
lubridate                 "lubridate"                
Luminescence              "Luminescence"             
magrittr                  "magrittr"                 
MALDIquant                "MALDIquant"               
MALDIquantForeign         "MALDIquantForeign"        
mapdata                   "mapdata"                  
mapproj                   "mapproj"                  
maps                      "maps"                     
maptools                  "maptools"                 
maptree                   "maptree"                  
markdown                  "markdown"                 
Matching                  "Matching"                 
MatchIt                   "MatchIt"                  
matrixcalc                "matrixcalc"               
MatrixModels              "MatrixModels"             
matrixStats               "matrixStats"              
maxLik                    "maxLik"                   
mclust                    "mclust"                   
mcmc                      "mcmc"                     
MCMCpack                  "MCMCpack"                 
medAdherence              "medAdherence"             
memoise                   "memoise"                  
mFilter                   "mFilter"                  
mi                        "mi"                       
mime                      "mime"                     
miniUI                    "miniUI"                   
minpack.lm                "minpack.lm"               
minqa                     "minqa"                    
misc3d                    "misc3d"                   
miscTools                 "miscTools"                
mixtools                  "mixtools"                 
mlbench                   "mlbench"                  
mlmRev                    "mlmRev"                   
mnormt                    "mnormt"                   
MNP                       "MNP"                      
mockery                   "mockery"                  
ModelMetrics              "ModelMetrics"             
modeltools                "modeltools"               
msm                       "msm"                      
multcomp                  "multcomp"                 
multicore                 "multicore"                
munsell                   "munsell"                  
mvnormtest                "mvnormtest"               
mvtnorm                   "mvtnorm"                  
natserv                   "natserv"                  
ncdf4                     "ncdf4"                    
nleqslv                   "nleqslv"                  
nloptr                    "nloptr"                   
NLP                       "NLP"                      
NMF                       "NMF"                      
nnls                      "nnls"                     
nortest                   "nortest"                  
numDeriv                  "numDeriv"                 
nws                       "nws"                      
openssl                   "openssl"                  
optparse                  "optparse"                 
pbapply                   "pbapply"                  
pbdZMQ                    "pbdZMQ"                   
pbivnorm                  "pbivnorm"                 
pbkrtest                  "pbkrtest"                 
permute                   "permute"                  
phangorn                  "phangorn"                 
pheatmap                  "pheatmap"                 
phylobase                 "phylobase"                
phytools                  "phytools"                 
pillar                    "pillar"                   
pkgconfig                 "pkgconfig"                
pkgKitten                 "pkgKitten"                
pkgmaker                  "pkgmaker"                 
plogr                     "plogr"                    
plotly                    "plotly"                   
plotrix                   "plotrix"                  
plyr                      "plyr"                     
png                       "png"                      
polspline                 "polspline"                
polyclip                  "polyclip"                 
polyCub                   "polyCub"                  
praise                    "praise"                   
prettyunits               "prettyunits"              
princurve                 "princurve"                
prodlim                   "prodlim"                  
profileModel              "profileModel"             
progress                  "progress"                 
proto                     "proto"                    
PSCBS                     "PSCBS"                    
pscl                      "pscl"                     
psy                       "psy"                      
psych                     "psych"                    
purrr                     "purrr"                    
pwt                       "pwt"                      
pwt8                      "pwt8"                     
pwt9                      "pwt9"                     
qqman                     "qqman"                    
qtl                       "qtl"                      
quadprog                  "quadprog"                 
quantmod                  "quantmod"                 
quantreg                  "quantreg"                 
qvcalc                    "qvcalc"                   
R.cache                   "R.cache"                  
R.methodsS3               "R.methodsS3"              
R.oo                      "R.oo"                     
R.utils                   "R.utils"                  
R6                        "R6"                       
RandomFields              "RandomFields"             
RandomFieldsUtils         "RandomFieldsUtils"        
randomForest              "randomForest"             
RaschSampler              "RaschSampler"             
raster                    "raster"                   
Rcmdr                     "Rcmdr"                    
RcmdrMisc                 "RcmdrMisc"                
RColorBrewer              "RColorBrewer"             
Rcpp                      "Rcpp"                     
RcppArmadillo             "RcppArmadillo"            
RcppEigen                 "RcppEigen"                
RcppGSL                   "RcppGSL"                  
RcppRoll                  "RcppRoll"                 
RCurl                     "RCurl"                    
readBrukerFlexData        "readBrukerFlexData"       
readMzXmlData             "readMzXmlData"            
readr                     "readr"                    
readstata13               "readstata13"              
readxl                    "readxl"                   
recipes                   "recipes"                  
registry                  "registry"                 
relimp                    "relimp"                   
rematch                   "rematch"                  
rentrez                   "rentrez"                  
repr                      "repr"                     
reshape                   "reshape"                  
reshape2                  "reshape2"                 
rgenoud                   "rgenoud"                  
rggobi                    "rggobi"                   
rgl                       "rgl"                      
Rglpk                     "Rglpk"                    
rglwidget                 "rglwidget"                
RGtk2                     "RGtk2"                    
rhandsontable             "rhandsontable"            
RInside                   "RInside"                  
ritis                     "ritis"                    
rjags                     "rjags"                    
rJava                     "rJava"                    
rjson                     "rjson"                    
RJSONIO                   "RJSONIO"                  
rlang                     "rlang"                    
rlist                     "rlist"                    
RLumShiny                 "RLumShiny"                
Rmpi                      "Rmpi"                     
rms                       "rms"                      
RMySQL                    "RMySQL"                   
rncl                      "rncl"                     
rneos                     "rneos"                    
RNetCDF                   "RNetCDF"                  
RNeXML                    "RNeXML"                   
rngtools                  "rngtools"                 
Rniftilib                 "Rniftilib"                
robustbase                "robustbase"               
ROCR                      "ROCR"                     
RODBC                     "RODBC"                    
rotl                      "rotl"                     
RPostgreSQL               "RPostgreSQL"              
rprojroot                 "rprojroot"                
RProtoBuf                 "RProtoBuf"                
RQuantLib                 "RQuantLib"                
rredlist                  "rredlist"                 
RSclient                  "RSclient"                 
rsdmx                     "rsdmx"                    
Rserve                    "Rserve"                   
Rsolnp                    "Rsolnp"                   
rsprng                    "rsprng"                   
RSQLite                   "RSQLite"                  
rstudioapi                "rstudioapi"               
Rsymphony                 "Rsymphony"                
RUnit                     "RUnit"                    
sandwich                  "sandwich"                 
scales                    "scales"                   
scatterD3                 "scatterD3"                
scatterplot3d             "scatterplot3d"            
segmented                 "segmented"                
sem                       "sem"                      
semTools                  "semTools"                 
sendmailR                 "sendmailR"                
seqinr                    "seqinr"                   
seroincidence             "seroincidence"            
sfsmisc                   "sfsmisc"                  
shape                     "shape"                    
shiny                     "shiny"                    
shinyBS                   "shinyBS"                  
shinydashboard            "shinydashboard"           
shinyjs                   "shinyjs"                  
slam                      "slam"                     
sm                        "sm"                       
sn                        "sn"                       
snow                      "snow"                     
SnowballC                 "SnowballC"                
solrium                   "solrium"                  
sourcetools               "sourcetools"              
sp                        "sp"                       
spam                      "spam"                     
SparseM                   "SparseM"                  
spatstat                  "spatstat"                 
spatstat.data             "spatstat.data"            
spatstat.utils            "spatstat.utils"           
spc                       "spc"                      
spdep                     "spdep"                    
stabledist                "stabledist"               
statmod                   "statmod"                  
stringi                   "stringi"                  
stringr                   "stringr"                  
strucchange               "strucchange"              
surveillance              "surveillance"             
survey                    "survey"                   
taxize                    "taxize"                   
tcltk2                    "tcltk2"                   
TeachingDemos             "TeachingDemos"            
tensor                    "tensor"                   
testit                    "testit"                   
testthat                  "testthat"                 
tgp                       "tgp"                      
TH.data                   "TH.data"                  
tibble                    "tibble"                   
tidyr                     "tidyr"                    
tidyselect                "tidyselect"               
tikzDevice                "tikzDevice"               
timeDate                  "timeDate"                 
timeSeries                "timeSeries"               
tkrplot                   "tkrplot"                  
tm                        "tm"                       
treescape                 "treescape"                
treespace                 "treespace"                
triebeard                 "triebeard"                
truncdist                 "truncdist"                
truncnorm                 "truncnorm"                
tseries                   "tseries"                  
TTR                       "TTR"                      
urca                      "urca"                     
urltools                  "urltools"                 
utf8                      "utf8"                     
uuid                      "uuid"                     
V8                        "V8"                       
vcd                       "vcd"                      
vcdExtra                  "vcdExtra"                 
vegan                     "vegan"                    
VGAM                      "VGAM"                     
vioplot                   "vioplot"                  
viridis                   "viridis"                  
viridisLite               "viridisLite"              
WDI                       "WDI"                      
webmockr                  "webmockr"                 
whisker                   "whisker"                  
WikidataR                 "WikidataR"                
WikipediR                 "WikipediR"                
wikitaxa                  "wikitaxa"                 
withr                     "withr"                    
wordcloud                 "wordcloud"                
worrms                    "worrms"                   
XML                       "XML"                      
xml2                      "xml2"                     
XMLRPC                    "XMLRPC"                   
xtable                    "xtable"                   
xts                       "xts"                      
yaml                      "yaml"                     
Zelig                     "Zelig"                    
zoo                       "zoo"                      
base                      "base"                     
boot                      "boot"                     
class                     "class"                    
cluster                   "cluster"                  
codetools                 "codetools"                
compiler                  "compiler"                 
datasets                  "datasets"                 
foreign                   "foreign"                  
graphics                  "graphics"                 
grDevices                 "grDevices"                
grid                      "grid"                     
KernSmooth                "KernSmooth"               
lattice                   "lattice"                  
MASS                      "MASS"                     
Matrix                    "Matrix"                   
methods                   "methods"                  
mgcv                      "mgcv"                     
nlme                      "nlme"                     
nnet                      "nnet"                     
parallel                  "parallel"                 
rpart                     "rpart"                    
spatial                   "spatial"                  
splines                   "splines"                  
stats                     "stats"                    
stats4                    "stats4"                   
survival                  "survival"                 
tcltk                     "tcltk"                    
tools                     "tools"                    
utils                     "utils"                    
                          LibPath                                         
abind                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
acepack                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
adabag                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
alabama                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
alluvial                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
askpass                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
assertthat                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
backports                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
base64enc                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bgmfiles                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
BH                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bibliometrix              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bibtex                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
BiocGenerics              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
BiocInstaller             "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bit                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bit64                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bitops                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
blob                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
bookdown                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
brew                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
broom                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
callr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
car                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
carData                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
caTools                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
cellranger                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
checkmate                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
classInt                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
cli                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
clipr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
colorspace                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
corrplot                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
cowplot                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
crayon                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
crosstalk                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
crul                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
csvread                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Cubist                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
curl                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
data.table                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
data.tree                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
DBI                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
dendextend                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
DEoptim                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
DiagrammeR                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
digest                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
downloader                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
dplyr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
DT                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
dygraphs                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
e1071                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ECOSolveR                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
eha                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ellipsis                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
evaluate                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
expm                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
extrafont                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
extrafontdb               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
factoextra                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
FactoMineR                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
fansi                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
farver                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
fastmatch                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
FinCal                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
fitdistrplus              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
flexdashboard             "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
forcats                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
foreign                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Formula                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
fs                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gbRd                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gdalUtils                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gdtools                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
genalg                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
generics                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
geojsonR                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
geosphere                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gepaf                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggforce                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggmap                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggplot2                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggpubr                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggraph                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggrepel                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggsci                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ggsignif                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gistr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
globalOptTests            "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
glue                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
graph                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gridExtra                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gtable                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gWidgets                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
gWidgetsRGtk2             "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
haven                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
highr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Hmisc                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
hms                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
htmlTable                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
htmltools                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
htmlwidgets               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
httpcode                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
httpuv                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
httr                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
hunspell                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
igraph                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
influenceR                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
isoband                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ISOcodes                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
janeaustenr               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
jpeg                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
jsonlite                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
kernlab                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
kknn                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
knitr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
labeling                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
labelled                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
later                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
latticeExtra              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lazyeval                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
leaflet                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
leaflet.extras            "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
leafpop                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lme4                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lmtest                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lpSolve                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lpSolveAPI                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lsei                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lubridate                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
magrittr                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
maps                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
maptools                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
markdown                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
MatrixModels              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
matrixStats               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mc2d                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mclust                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mco                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mda                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
memoise                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mime                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
minqa                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
mlogit                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
modelr                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
modeltools                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
munsell                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
nabor                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
network                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
networkD3                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
nloptr                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
NLP                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
npsurv                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
opencage                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
openssl                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
openxlsx                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
optimx                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
osmar                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
packrat                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
party                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pbkrtest                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
PerformanceAnalytics      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pillar                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pkgconfig                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
plogr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
plotly                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pls                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
plyr                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
png                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
polyclip                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
polynom                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
prettyunits               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
processx                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
progress                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
promises                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pryr                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ps                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
purrr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
qcc                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
qmap                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
qualityTools              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
quantmod                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
quantreg                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
questionr                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
R.methodsS3               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
R.oo                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
R.utils                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
R6                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
raster                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rbgm                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rbokeh                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rCarto                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RColorBrewer              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Rcpp                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RcppArmadillo             "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RcppEigen                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RcppParallel              "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RCurl                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Rdpack                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
readr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
readxl                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rematch                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
reprex                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
reshape2                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
reticulate                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rgdal                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rgeos                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rgexf                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RgoogleMaps               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RGraphics                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Rgraphviz                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rio                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RISmed                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RJSONIO                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rlang                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rmarkdown                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rmdformats                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rminer                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.models.globalOptTests "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.models.miplib         "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.models.netlib         "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.alabama        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.deoptim        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.ecos           "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.glpk           "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.ipop           "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.lpsolve        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.msbinlp        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.neos           "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
ROI.plugin.optimx         "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Rook                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rprojroot                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RQDA                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rriskDistributions        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rsconnect                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rscopus                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RSpectra                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RSQLite                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rstudioapi                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
RTriangle                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
Rttf2pt1                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rtweet                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rvest                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
sandwich                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
satellite                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
scales                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
scatterplot3d             "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
selectr                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
sf                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
shiny                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
shinycssloaders           "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
shinythemes               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
simmer                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
simmer.plot               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
SixSigma                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
SnowballC                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
sourcetools               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
sp                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
spacyr                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
SparseM                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
spData                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
spDataLarge               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
statmod                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
stopwords                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
stringdist                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
stringi                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
stringr                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
strucchange               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
survival                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
svglite                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
sys                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
TH.data                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tibble                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tictoc                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tidyr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tidyselect                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tidytext                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tidyverse                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
timevis                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tinytex                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tm                        "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tokenizers                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
triebeard                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tweenr                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
twitteR                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
units                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
urltools                  "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
utf8                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
vctrs                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
viridis                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
viridisLite               "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
visNetwork                "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
webshot                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
widyr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
withr                     "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
wordcloud                 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
xfun                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
xgboost                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
XML                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
xmlrpc2                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
xtable                    "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
yaml                      "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
zeallot                   "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
zip                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
zoo                       "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
eha                       "/usr/local/lib/R/site-library"                 
mc2d                      "/usr/local/lib/R/site-library"                 
rriskDistributions        "/usr/local/lib/R/site-library"                 
survival                  "/usr/local/lib/R/site-library"                 
abind                     "/usr/lib/R/site-library"                       
acepack                   "/usr/lib/R/site-library"                       
ade4                      "/usr/lib/R/site-library"                       
adegenet                  "/usr/lib/R/site-library"                       
adegraphics               "/usr/lib/R/site-library"                       
adephylo                  "/usr/lib/R/site-library"                       
AER                       "/usr/lib/R/site-library"                       
afex                      "/usr/lib/R/site-library"                       
Amelia                    "/usr/lib/R/site-library"                       
AMORE                     "/usr/lib/R/site-library"                       
animation                 "/usr/lib/R/site-library"                       
ape                       "/usr/lib/R/site-library"                       
arm                       "/usr/lib/R/site-library"                       
aroma.light               "/usr/lib/R/site-library"                       
assertthat                "/usr/lib/R/site-library"                       
backports                 "/usr/lib/R/site-library"                       
base64enc                 "/usr/lib/R/site-library"                       
BatchJobs                 "/usr/lib/R/site-library"                       
BayesFactor               "/usr/lib/R/site-library"                       
bayesm                    "/usr/lib/R/site-library"                       
BBmisc                    "/usr/lib/R/site-library"                       
bbmle                     "/usr/lib/R/site-library"                       
beeswarm                  "/usr/lib/R/site-library"                       
BiasedUrn                 "/usr/lib/R/site-library"                       
bindr                     "/usr/lib/R/site-library"                       
bindrcpp                  "/usr/lib/R/site-library"                       
bio3d                     "/usr/lib/R/site-library"                       
bit                       "/usr/lib/R/site-library"                       
bit64                     "/usr/lib/R/site-library"                       
bitops                    "/usr/lib/R/site-library"                       
blob                      "/usr/lib/R/site-library"                       
blockmodeling             "/usr/lib/R/site-library"                       
BMS                       "/usr/lib/R/site-library"                       
bold                      "/usr/lib/R/site-library"                       
BoolNet                   "/usr/lib/R/site-library"                       
BradleyTerry2             "/usr/lib/R/site-library"                       
brew                      "/usr/lib/R/site-library"                       
brglm                     "/usr/lib/R/site-library"                       
broom                     "/usr/lib/R/site-library"                       
ca                        "/usr/lib/R/site-library"                       
Cairo                     "/usr/lib/R/site-library"                       
cairoDevice               "/usr/lib/R/site-library"                       
calibrate                 "/usr/lib/R/site-library"                       
car                       "/usr/lib/R/site-library"                       
carData                   "/usr/lib/R/site-library"                       
caret                     "/usr/lib/R/site-library"                       
caTools                   "/usr/lib/R/site-library"                       
cellranger                "/usr/lib/R/site-library"                       
checkmate                 "/usr/lib/R/site-library"                       
chron                     "/usr/lib/R/site-library"                       
cli                       "/usr/lib/R/site-library"                       
clusterGeneration         "/usr/lib/R/site-library"                       
cmprsk                    "/usr/lib/R/site-library"                       
coda                      "/usr/lib/R/site-library"                       
coin                      "/usr/lib/R/site-library"                       
colorspace                "/usr/lib/R/site-library"                       
combinat                  "/usr/lib/R/site-library"                       
contfrac                  "/usr/lib/R/site-library"                       
conting                   "/usr/lib/R/site-library"                       
corpcor                   "/usr/lib/R/site-library"                       
crayon                    "/usr/lib/R/site-library"                       
crosstalk                 "/usr/lib/R/site-library"                       
crul                      "/usr/lib/R/site-library"                       
cubature                  "/usr/lib/R/site-library"                       
curl                      "/usr/lib/R/site-library"                       
CVST                      "/usr/lib/R/site-library"                       
data.table                "/usr/lib/R/site-library"                       
date                      "/usr/lib/R/site-library"                       
DBI                       "/usr/lib/R/site-library"                       
DBItest                   "/usr/lib/R/site-library"                       
dbplyr                    "/usr/lib/R/site-library"                       
ddalpha                   "/usr/lib/R/site-library"                       
deal                      "/usr/lib/R/site-library"                       
deldir                    "/usr/lib/R/site-library"                       
DEoptimR                  "/usr/lib/R/site-library"                       
desc                      "/usr/lib/R/site-library"                       
deSolve                   "/usr/lib/R/site-library"                       
devtools                  "/usr/lib/R/site-library"                       
DiagnosisMed              "/usr/lib/R/site-library"                       
dichromat                 "/usr/lib/R/site-library"                       
digest                    "/usr/lib/R/site-library"                       
dimRed                    "/usr/lib/R/site-library"                       
distory                   "/usr/lib/R/site-library"                       
DNAcopy                   "/usr/lib/R/site-library"                       
doMC                      "/usr/lib/R/site-library"                       
doParallel                "/usr/lib/R/site-library"                       
DoseFinding               "/usr/lib/R/site-library"                       
doSNOW                    "/usr/lib/R/site-library"                       
dotCall64                 "/usr/lib/R/site-library"                       
downloader                "/usr/lib/R/site-library"                       
dplyr                     "/usr/lib/R/site-library"                       
DRR                       "/usr/lib/R/site-library"                       
DT                        "/usr/lib/R/site-library"                       
dynlm                     "/usr/lib/R/site-library"                       
e1071                     "/usr/lib/R/site-library"                       
eco                       "/usr/lib/R/site-library"                       
ecodist                   "/usr/lib/R/site-library"                       
effects                   "/usr/lib/R/site-library"                       
ellipse                   "/usr/lib/R/site-library"                       
elliptic                  "/usr/lib/R/site-library"                       
energy                    "/usr/lib/R/site-library"                       
Epi                       "/usr/lib/R/site-library"                       
epibasix                  "/usr/lib/R/site-library"                       
epicalc                   "/usr/lib/R/site-library"                       
epiR                      "/usr/lib/R/site-library"                       
epitools                  "/usr/lib/R/site-library"                       
eRm                       "/usr/lib/R/site-library"                       
estimability              "/usr/lib/R/site-library"                       
etm                       "/usr/lib/R/site-library"                       
evaluate                  "/usr/lib/R/site-library"                       
evd                       "/usr/lib/R/site-library"                       
expm                      "/usr/lib/R/site-library"                       
FactoMineR                "/usr/lib/R/site-library"                       
fail                      "/usr/lib/R/site-library"                       
fAsianOptions             "/usr/lib/R/site-library"                       
fAssets                   "/usr/lib/R/site-library"                       
fastcluster               "/usr/lib/R/site-library"                       
fastICA                   "/usr/lib/R/site-library"                       
fastmatch                 "/usr/lib/R/site-library"                       
fBasics                   "/usr/lib/R/site-library"                       
fBonds                    "/usr/lib/R/site-library"                       
fCopulae                  "/usr/lib/R/site-library"                       
fExoticOptions            "/usr/lib/R/site-library"                       
fExtremes                 "/usr/lib/R/site-library"                       
fGarch                    "/usr/lib/R/site-library"                       
fields                    "/usr/lib/R/site-library"                       
filehash                  "/usr/lib/R/site-library"                       
fImport                   "/usr/lib/R/site-library"                       
fitbitScraper             "/usr/lib/R/site-library"                       
fitcoach                  "/usr/lib/R/site-library"                       
flashClust                "/usr/lib/R/site-library"                       
fMultivar                 "/usr/lib/R/site-library"                       
fNonlinear                "/usr/lib/R/site-library"                       
fOptions                  "/usr/lib/R/site-library"                       
forcats                   "/usr/lib/R/site-library"                       
foreach                   "/usr/lib/R/site-library"                       
formatR                   "/usr/lib/R/site-library"                       
Formula                   "/usr/lib/R/site-library"                       
fPortfolio                "/usr/lib/R/site-library"                       
fRegression               "/usr/lib/R/site-library"                       
fTrading                  "/usr/lib/R/site-library"                       
fUnitRoots                "/usr/lib/R/site-library"                       
futile.logger             "/usr/lib/R/site-library"                       
futile.options            "/usr/lib/R/site-library"                       
future                    "/usr/lib/R/site-library"                       
g.data                    "/usr/lib/R/site-library"                       
gam                       "/usr/lib/R/site-library"                       
gbm                       "/usr/lib/R/site-library"                       
gdata                     "/usr/lib/R/site-library"                       
geepack                   "/usr/lib/R/site-library"                       
GenABEL                   "/usr/lib/R/site-library"                       
GenABEL.data              "/usr/lib/R/site-library"                       
genetics                  "/usr/lib/R/site-library"                       
getopt                    "/usr/lib/R/site-library"                       
ggplot2                   "/usr/lib/R/site-library"                       
ggvis                     "/usr/lib/R/site-library"                       
git2r                     "/usr/lib/R/site-library"                       
glmnet                    "/usr/lib/R/site-library"                       
globals                   "/usr/lib/R/site-library"                       
glue                      "/usr/lib/R/site-library"                       
gmaps                     "/usr/lib/R/site-library"                       
gmodels                   "/usr/lib/R/site-library"                       
gnm                       "/usr/lib/R/site-library"                       
goftest                   "/usr/lib/R/site-library"                       
googleVis                 "/usr/lib/R/site-library"                       
gower                     "/usr/lib/R/site-library"                       
gplots                    "/usr/lib/R/site-library"                       
gregmisc                  "/usr/lib/R/site-library"                       
gridBase                  "/usr/lib/R/site-library"                       
gridExtra                 "/usr/lib/R/site-library"                       
gsl                       "/usr/lib/R/site-library"                       
gss                       "/usr/lib/R/site-library"                       
gtable                    "/usr/lib/R/site-library"                       
gtools                    "/usr/lib/R/site-library"                       
Guerry                    "/usr/lib/R/site-library"                       
haplo.stats               "/usr/lib/R/site-library"                       
haven                     "/usr/lib/R/site-library"                       
hdf5                      "/usr/lib/R/site-library"                       
hexbin                    "/usr/lib/R/site-library"                       
highr                     "/usr/lib/R/site-library"                       
Hmisc                     "/usr/lib/R/site-library"                       
hms                       "/usr/lib/R/site-library"                       
htmlTable                 "/usr/lib/R/site-library"                       
htmltools                 "/usr/lib/R/site-library"                       
htmlwidgets               "/usr/lib/R/site-library"                       
httpcode                  "/usr/lib/R/site-library"                       
httpuv                    "/usr/lib/R/site-library"                       
httr                      "/usr/lib/R/site-library"                       
hwriter                   "/usr/lib/R/site-library"                       
hypergeo                  "/usr/lib/R/site-library"                       
igraph                    "/usr/lib/R/site-library"                       
inline                    "/usr/lib/R/site-library"                       
int64                     "/usr/lib/R/site-library"                       
ipred                     "/usr/lib/R/site-library"                       
irlba                     "/usr/lib/R/site-library"                       
ISOcodes                  "/usr/lib/R/site-library"                       
ISOweek                   "/usr/lib/R/site-library"                       
iterators                 "/usr/lib/R/site-library"                       
its                       "/usr/lib/R/site-library"                       
jsonlite                  "/usr/lib/R/site-library"                       
kernlab                   "/usr/lib/R/site-library"                       
knitr                     "/usr/lib/R/site-library"                       
labeling                  "/usr/lib/R/site-library"                       
lambda.r                  "/usr/lib/R/site-library"                       
latticeExtra              "/usr/lib/R/site-library"                       
lava                      "/usr/lib/R/site-library"                       
lavaan                    "/usr/lib/R/site-library"                       
lazyeval                  "/usr/lib/R/site-library"                       
leaps                     "/usr/lib/R/site-library"                       
LearnBayes                "/usr/lib/R/site-library"                       
lexRankr                  "/usr/lib/R/site-library"                       
lhs                       "/usr/lib/R/site-library"                       
listenv                   "/usr/lib/R/site-library"                       
littler                   "/usr/lib/R/site-library"                       
lme4                      "/usr/lib/R/site-library"                       
lmerTest                  "/usr/lib/R/site-library"                       
lmtest                    "/usr/lib/R/site-library"                       
logspline                 "/usr/lib/R/site-library"                       
lpSolve                   "/usr/lib/R/site-library"                       
lsmeans                   "/usr/lib/R/site-library"                       
lubridate                 "/usr/lib/R/site-library"                       
Luminescence              "/usr/lib/R/site-library"                       
magrittr                  "/usr/lib/R/site-library"                       
MALDIquant                "/usr/lib/R/site-library"                       
MALDIquantForeign         "/usr/lib/R/site-library"                       
mapdata                   "/usr/lib/R/site-library"                       
mapproj                   "/usr/lib/R/site-library"                       
maps                      "/usr/lib/R/site-library"                       
maptools                  "/usr/lib/R/site-library"                       
maptree                   "/usr/lib/R/site-library"                       
markdown                  "/usr/lib/R/site-library"                       
Matching                  "/usr/lib/R/site-library"                       
MatchIt                   "/usr/lib/R/site-library"                       
matrixcalc                "/usr/lib/R/site-library"                       
MatrixModels              "/usr/lib/R/site-library"                       
matrixStats               "/usr/lib/R/site-library"                       
maxLik                    "/usr/lib/R/site-library"                       
mclust                    "/usr/lib/R/site-library"                       
mcmc                      "/usr/lib/R/site-library"                       
MCMCpack                  "/usr/lib/R/site-library"                       
medAdherence              "/usr/lib/R/site-library"                       
memoise                   "/usr/lib/R/site-library"                       
mFilter                   "/usr/lib/R/site-library"                       
mi                        "/usr/lib/R/site-library"                       
mime                      "/usr/lib/R/site-library"                       
miniUI                    "/usr/lib/R/site-library"                       
minpack.lm                "/usr/lib/R/site-library"                       
minqa                     "/usr/lib/R/site-library"                       
misc3d                    "/usr/lib/R/site-library"                       
miscTools                 "/usr/lib/R/site-library"                       
mixtools                  "/usr/lib/R/site-library"                       
mlbench                   "/usr/lib/R/site-library"                       
mlmRev                    "/usr/lib/R/site-library"                       
mnormt                    "/usr/lib/R/site-library"                       
MNP                       "/usr/lib/R/site-library"                       
mockery                   "/usr/lib/R/site-library"                       
ModelMetrics              "/usr/lib/R/site-library"                       
modeltools                "/usr/lib/R/site-library"                       
msm                       "/usr/lib/R/site-library"                       
multcomp                  "/usr/lib/R/site-library"                       
multicore                 "/usr/lib/R/site-library"                       
munsell                   "/usr/lib/R/site-library"                       
mvnormtest                "/usr/lib/R/site-library"                       
mvtnorm                   "/usr/lib/R/site-library"                       
natserv                   "/usr/lib/R/site-library"                       
ncdf4                     "/usr/lib/R/site-library"                       
nleqslv                   "/usr/lib/R/site-library"                       
nloptr                    "/usr/lib/R/site-library"                       
NLP                       "/usr/lib/R/site-library"                       
NMF                       "/usr/lib/R/site-library"                       
nnls                      "/usr/lib/R/site-library"                       
nortest                   "/usr/lib/R/site-library"                       
numDeriv                  "/usr/lib/R/site-library"                       
nws                       "/usr/lib/R/site-library"                       
openssl                   "/usr/lib/R/site-library"                       
optparse                  "/usr/lib/R/site-library"                       
pbapply                   "/usr/lib/R/site-library"                       
pbdZMQ                    "/usr/lib/R/site-library"                       
pbivnorm                  "/usr/lib/R/site-library"                       
pbkrtest                  "/usr/lib/R/site-library"                       
permute                   "/usr/lib/R/site-library"                       
phangorn                  "/usr/lib/R/site-library"                       
pheatmap                  "/usr/lib/R/site-library"                       
phylobase                 "/usr/lib/R/site-library"                       
phytools                  "/usr/lib/R/site-library"                       
pillar                    "/usr/lib/R/site-library"                       
pkgconfig                 "/usr/lib/R/site-library"                       
pkgKitten                 "/usr/lib/R/site-library"                       
pkgmaker                  "/usr/lib/R/site-library"                       
plogr                     "/usr/lib/R/site-library"                       
plotly                    "/usr/lib/R/site-library"                       
plotrix                   "/usr/lib/R/site-library"                       
plyr                      "/usr/lib/R/site-library"                       
png                       "/usr/lib/R/site-library"                       
polspline                 "/usr/lib/R/site-library"                       
polyclip                  "/usr/lib/R/site-library"                       
polyCub                   "/usr/lib/R/site-library"                       
praise                    "/usr/lib/R/site-library"                       
prettyunits               "/usr/lib/R/site-library"                       
princurve                 "/usr/lib/R/site-library"                       
prodlim                   "/usr/lib/R/site-library"                       
profileModel              "/usr/lib/R/site-library"                       
progress                  "/usr/lib/R/site-library"                       
proto                     "/usr/lib/R/site-library"                       
PSCBS                     "/usr/lib/R/site-library"                       
pscl                      "/usr/lib/R/site-library"                       
psy                       "/usr/lib/R/site-library"                       
psych                     "/usr/lib/R/site-library"                       
purrr                     "/usr/lib/R/site-library"                       
pwt                       "/usr/lib/R/site-library"                       
pwt8                      "/usr/lib/R/site-library"                       
pwt9                      "/usr/lib/R/site-library"                       
qqman                     "/usr/lib/R/site-library"                       
qtl                       "/usr/lib/R/site-library"                       
quadprog                  "/usr/lib/R/site-library"                       
quantmod                  "/usr/lib/R/site-library"                       
quantreg                  "/usr/lib/R/site-library"                       
qvcalc                    "/usr/lib/R/site-library"                       
R.cache                   "/usr/lib/R/site-library"                       
R.methodsS3               "/usr/lib/R/site-library"                       
R.oo                      "/usr/lib/R/site-library"                       
R.utils                   "/usr/lib/R/site-library"                       
R6                        "/usr/lib/R/site-library"                       
RandomFields              "/usr/lib/R/site-library"                       
RandomFieldsUtils         "/usr/lib/R/site-library"                       
randomForest              "/usr/lib/R/site-library"                       
RaschSampler              "/usr/lib/R/site-library"                       
raster                    "/usr/lib/R/site-library"                       
Rcmdr                     "/usr/lib/R/site-library"                       
RcmdrMisc                 "/usr/lib/R/site-library"                       
RColorBrewer              "/usr/lib/R/site-library"                       
Rcpp                      "/usr/lib/R/site-library"                       
RcppArmadillo             "/usr/lib/R/site-library"                       
RcppEigen                 "/usr/lib/R/site-library"                       
RcppGSL                   "/usr/lib/R/site-library"                       
RcppRoll                  "/usr/lib/R/site-library"                       
RCurl                     "/usr/lib/R/site-library"                       
readBrukerFlexData        "/usr/lib/R/site-library"                       
readMzXmlData             "/usr/lib/R/site-library"                       
readr                     "/usr/lib/R/site-library"                       
readstata13               "/usr/lib/R/site-library"                       
readxl                    "/usr/lib/R/site-library"                       
recipes                   "/usr/lib/R/site-library"                       
registry                  "/usr/lib/R/site-library"                       
relimp                    "/usr/lib/R/site-library"                       
rematch                   "/usr/lib/R/site-library"                       
rentrez                   "/usr/lib/R/site-library"                       
repr                      "/usr/lib/R/site-library"                       
reshape                   "/usr/lib/R/site-library"                       
reshape2                  "/usr/lib/R/site-library"                       
rgenoud                   "/usr/lib/R/site-library"                       
rggobi                    "/usr/lib/R/site-library"                       
rgl                       "/usr/lib/R/site-library"                       
Rglpk                     "/usr/lib/R/site-library"                       
rglwidget                 "/usr/lib/R/site-library"                       
RGtk2                     "/usr/lib/R/site-library"                       
rhandsontable             "/usr/lib/R/site-library"                       
RInside                   "/usr/lib/R/site-library"                       
ritis                     "/usr/lib/R/site-library"                       
rjags                     "/usr/lib/R/site-library"                       
rJava                     "/usr/lib/R/site-library"                       
rjson                     "/usr/lib/R/site-library"                       
RJSONIO                   "/usr/lib/R/site-library"                       
rlang                     "/usr/lib/R/site-library"                       
rlist                     "/usr/lib/R/site-library"                       
RLumShiny                 "/usr/lib/R/site-library"                       
Rmpi                      "/usr/lib/R/site-library"                       
rms                       "/usr/lib/R/site-library"                       
RMySQL                    "/usr/lib/R/site-library"                       
rncl                      "/usr/lib/R/site-library"                       
rneos                     "/usr/lib/R/site-library"                       
RNetCDF                   "/usr/lib/R/site-library"                       
RNeXML                    "/usr/lib/R/site-library"                       
rngtools                  "/usr/lib/R/site-library"                       
Rniftilib                 "/usr/lib/R/site-library"                       
robustbase                "/usr/lib/R/site-library"                       
ROCR                      "/usr/lib/R/site-library"                       
RODBC                     "/usr/lib/R/site-library"                       
rotl                      "/usr/lib/R/site-library"                       
RPostgreSQL               "/usr/lib/R/site-library"                       
rprojroot                 "/usr/lib/R/site-library"                       
RProtoBuf                 "/usr/lib/R/site-library"                       
RQuantLib                 "/usr/lib/R/site-library"                       
rredlist                  "/usr/lib/R/site-library"                       
RSclient                  "/usr/lib/R/site-library"                       
rsdmx                     "/usr/lib/R/site-library"                       
Rserve                    "/usr/lib/R/site-library"                       
Rsolnp                    "/usr/lib/R/site-library"                       
rsprng                    "/usr/lib/R/site-library"                       
RSQLite                   "/usr/lib/R/site-library"                       
rstudioapi                "/usr/lib/R/site-library"                       
Rsymphony                 "/usr/lib/R/site-library"                       
RUnit                     "/usr/lib/R/site-library"                       
sandwich                  "/usr/lib/R/site-library"                       
scales                    "/usr/lib/R/site-library"                       
scatterD3                 "/usr/lib/R/site-library"                       
scatterplot3d             "/usr/lib/R/site-library"                       
segmented                 "/usr/lib/R/site-library"                       
sem                       "/usr/lib/R/site-library"                       
semTools                  "/usr/lib/R/site-library"                       
sendmailR                 "/usr/lib/R/site-library"                       
seqinr                    "/usr/lib/R/site-library"                       
seroincidence             "/usr/lib/R/site-library"                       
sfsmisc                   "/usr/lib/R/site-library"                       
shape                     "/usr/lib/R/site-library"                       
shiny                     "/usr/lib/R/site-library"                       
shinyBS                   "/usr/lib/R/site-library"                       
shinydashboard            "/usr/lib/R/site-library"                       
shinyjs                   "/usr/lib/R/site-library"                       
slam                      "/usr/lib/R/site-library"                       
sm                        "/usr/lib/R/site-library"                       
sn                        "/usr/lib/R/site-library"                       
snow                      "/usr/lib/R/site-library"                       
SnowballC                 "/usr/lib/R/site-library"                       
solrium                   "/usr/lib/R/site-library"                       
sourcetools               "/usr/lib/R/site-library"                       
sp                        "/usr/lib/R/site-library"                       
spam                      "/usr/lib/R/site-library"                       
SparseM                   "/usr/lib/R/site-library"                       
spatstat                  "/usr/lib/R/site-library"                       
spatstat.data             "/usr/lib/R/site-library"                       
spatstat.utils            "/usr/lib/R/site-library"                       
spc                       "/usr/lib/R/site-library"                       
spdep                     "/usr/lib/R/site-library"                       
stabledist                "/usr/lib/R/site-library"                       
statmod                   "/usr/lib/R/site-library"                       
stringi                   "/usr/lib/R/site-library"                       
stringr                   "/usr/lib/R/site-library"                       
strucchange               "/usr/lib/R/site-library"                       
surveillance              "/usr/lib/R/site-library"                       
survey                    "/usr/lib/R/site-library"                       
taxize                    "/usr/lib/R/site-library"                       
tcltk2                    "/usr/lib/R/site-library"                       
TeachingDemos             "/usr/lib/R/site-library"                       
tensor                    "/usr/lib/R/site-library"                       
testit                    "/usr/lib/R/site-library"                       
testthat                  "/usr/lib/R/site-library"                       
tgp                       "/usr/lib/R/site-library"                       
TH.data                   "/usr/lib/R/site-library"                       
tibble                    "/usr/lib/R/site-library"                       
tidyr                     "/usr/lib/R/site-library"                       
tidyselect                "/usr/lib/R/site-library"                       
tikzDevice                "/usr/lib/R/site-library"                       
timeDate                  "/usr/lib/R/site-library"                       
timeSeries                "/usr/lib/R/site-library"                       
tkrplot                   "/usr/lib/R/site-library"                       
tm                        "/usr/lib/R/site-library"                       
treescape                 "/usr/lib/R/site-library"                       
treespace                 "/usr/lib/R/site-library"                       
triebeard                 "/usr/lib/R/site-library"                       
truncdist                 "/usr/lib/R/site-library"                       
truncnorm                 "/usr/lib/R/site-library"                       
tseries                   "/usr/lib/R/site-library"                       
TTR                       "/usr/lib/R/site-library"                       
urca                      "/usr/lib/R/site-library"                       
urltools                  "/usr/lib/R/site-library"                       
utf8                      "/usr/lib/R/site-library"                       
uuid                      "/usr/lib/R/site-library"                       
V8                        "/usr/lib/R/site-library"                       
vcd                       "/usr/lib/R/site-library"                       
vcdExtra                  "/usr/lib/R/site-library"                       
vegan                     "/usr/lib/R/site-library"                       
VGAM                      "/usr/lib/R/site-library"                       
vioplot                   "/usr/lib/R/site-library"                       
viridis                   "/usr/lib/R/site-library"                       
viridisLite               "/usr/lib/R/site-library"                       
WDI                       "/usr/lib/R/site-library"                       
webmockr                  "/usr/lib/R/site-library"                       
whisker                   "/usr/lib/R/site-library"                       
WikidataR                 "/usr/lib/R/site-library"                       
WikipediR                 "/usr/lib/R/site-library"                       
wikitaxa                  "/usr/lib/R/site-library"                       
withr                     "/usr/lib/R/site-library"                       
wordcloud                 "/usr/lib/R/site-library"                       
worrms                    "/usr/lib/R/site-library"                       
XML                       "/usr/lib/R/site-library"                       
xml2                      "/usr/lib/R/site-library"                       
XMLRPC                    "/usr/lib/R/site-library"                       
xtable                    "/usr/lib/R/site-library"                       
xts                       "/usr/lib/R/site-library"                       
yaml                      "/usr/lib/R/site-library"                       
Zelig                     "/usr/lib/R/site-library"                       
zoo                       "/usr/lib/R/site-library"                       
base                      "/usr/lib/R/library"                            
boot                      "/usr/lib/R/library"                            
class                     "/usr/lib/R/library"                            
cluster                   "/usr/lib/R/library"                            
codetools                 "/usr/lib/R/library"                            
compiler                  "/usr/lib/R/library"                            
datasets                  "/usr/lib/R/library"                            
foreign                   "/usr/lib/R/library"                            
graphics                  "/usr/lib/R/library"                            
grDevices                 "/usr/lib/R/library"                            
grid                      "/usr/lib/R/library"                            
KernSmooth                "/usr/lib/R/library"                            
lattice                   "/usr/lib/R/library"                            
MASS                      "/usr/lib/R/library"                            
Matrix                    "/usr/lib/R/library"                            
methods                   "/usr/lib/R/library"                            
mgcv                      "/usr/lib/R/library"                            
nlme                      "/usr/lib/R/library"                            
nnet                      "/usr/lib/R/library"                            
parallel                  "/usr/lib/R/library"                            
rpart                     "/usr/lib/R/library"                            
spatial                   "/usr/lib/R/library"                            
splines                   "/usr/lib/R/library"                            
stats                     "/usr/lib/R/library"                            
stats4                    "/usr/lib/R/library"                            
survival                  "/usr/lib/R/library"                            
tcltk                     "/usr/lib/R/library"                            
tools                     "/usr/lib/R/library"                            
utils                     "/usr/lib/R/library"                            
                          Version        Priority     
abind                     "1.4-5"        NA           
acepack                   "1.4.1"        NA           
adabag                    "4.2"          NA           
alabama                   "2015.3-1"     NA           
alluvial                  "0.1-2"        NA           
askpass                   "1.1"          NA           
assertthat                "0.2.1"        NA           
backports                 "1.1.4"        NA           
base64enc                 "0.1-3"        NA           
bgmfiles                  "0.0.6"        NA           
BH                        "1.69.0-1"     NA           
bibliometrix              "2.2.2"        NA           
bibtex                    "0.4.2"        NA           
BiocGenerics              "0.24.0"       NA           
BiocInstaller             "1.28.0"       NA           
bit                       "1.1-14"       NA           
bit64                     "0.9-7"        NA           
bitops                    "1.0-6"        NA           
blob                      "1.2.0"        NA           
bookdown                  "0.12"         NA           
brew                      "1.0-6"        NA           
broom                     "0.5.2"        NA           
callr                     "3.3.1"        NA           
car                       "3.0-2"        NA           
carData                   "3.0-2"        NA           
caTools                   "1.17.1.2"     NA           
cellranger                "1.1.0"        NA           
checkmate                 "1.9.4"        NA           
classInt                  "0.4-1"        NA           
cli                       "1.1.0"        NA           
clipr                     "0.7.0"        NA           
colorspace                "1.4-1"        NA           
corrplot                  "0.84"         NA           
cowplot                   "0.6.3"        NA           
crayon                    "1.3.4"        NA           
crosstalk                 "1.0.0"        NA           
crul                      "0.8.4"        NA           
csvread                   "1.2.1"        NA           
Cubist                    "0.2.2"        NA           
curl                      "4.0"          NA           
data.table                "1.12.2"       NA           
data.tree                 "0.7.8"        NA           
DBI                       "1.0.0"        NA           
dendextend                "1.12.0"       NA           
DEoptim                   "2.2-4"        NA           
DiagrammeR                "1.0.1"        NA           
digest                    "0.6.20"       NA           
downloader                "0.4"          NA           
dplyr                     "0.8.3"        NA           
DT                        "0.8"          NA           
dygraphs                  "1.1.1.6"      NA           
e1071                     "1.7-2"        NA           
ECOSolveR                 "0.5.2"        NA           
eha                       "2.6.0"        NA           
ellipsis                  "0.2.0.1"      NA           
evaluate                  "0.14"         NA           
expm                      "0.999-4"      NA           
extrafont                 "0.17"         NA           
extrafontdb               "1.0"          NA           
factoextra                "1.0.5"        NA           
FactoMineR                "1.42"         NA           
fansi                     "0.4.0"        NA           
farver                    "1.1.0"        NA           
fastmatch                 "1.1-0"        NA           
FinCal                    "0.6.3"        NA           
fitdistrplus              "1.0-14"       NA           
flexdashboard             "0.5.1.1"      NA           
forcats                   "0.4.0"        NA           
foreign                   "0.8-72"       "recommended"
Formula                   "1.2-3"        NA           
fs                        "1.3.1"        NA           
gbRd                      "0.4-11"       NA           
gdalUtils                 "2.0.1.14"     NA           
gdtools                   "0.1.9"        NA           
genalg                    "0.2.0"        NA           
generics                  "0.0.2"        NA           
geojsonR                  "1.0.7"        NA           
geosphere                 "1.5-10"       NA           
gepaf                     "0.1.1"        NA           
ggforce                   "0.3.0"        NA           
ggmap                     "3.0.0"        NA           
ggplot2                   "3.2.1"        NA           
ggpubr                    "0.2.2"        NA           
ggraph                    "1.0.2"        NA           
ggrepel                   "0.8.1"        NA           
ggsci                     "2.9"          NA           
ggsignif                  "0.6.0"        NA           
gistr                     "0.4.2"        NA           
globalOptTests            "1.1"          NA           
glue                      "1.3.1"        NA           
graph                     "1.56.0"       NA           
gridExtra                 "2.3"          NA           
gtable                    "0.3.0"        NA           
gWidgets                  "0.0-54.1"     NA           
gWidgetsRGtk2             "0.0-86"       NA           
haven                     "2.1.1"        NA           
highr                     "0.8"          NA           
Hmisc                     "4.2-0"        NA           
hms                       "0.5.0"        NA           
htmlTable                 "1.13.1"       NA           
htmltools                 "0.3.6"        NA           
htmlwidgets               "1.3"          NA           
httpcode                  "0.2.0"        NA           
httpuv                    "1.5.1"        NA           
httr                      "1.4.1"        NA           
hunspell                  "3.0"          NA           
igraph                    "1.2.4.1"      NA           
influenceR                "0.1.0"        NA           
isoband                   "0.2.0"        NA           
ISOcodes                  "2019.04.22"   NA           
janeaustenr               "0.1.5"        NA           
jpeg                      "0.1-8"        NA           
jsonlite                  "1.6"          NA           
kernlab                   "0.9-27"       NA           
kknn                      "1.3.1"        NA           
knitr                     "1.24"         NA           
labeling                  "0.3"          NA           
labelled                  "2.2.1"        NA           
later                     "0.8.0"        NA           
latticeExtra              "0.6-28"       NA           
lazyeval                  "0.2.2"        NA           
leaflet                   "2.0.2"        NA           
leaflet.extras            "1.0.0"        NA           
leafpop                   "0.0.1"        NA           
lme4                      "1.1-21"       NA           
lmtest                    "0.9-37"       NA           
lpSolve                   "5.6.13.2"     NA           
lpSolveAPI                "5.5.2.0-17.4" NA           
lsei                      "1.2-0"        NA           
lubridate                 "1.7.4"        NA           
magrittr                  "1.5"          NA           
maps                      "3.3.0"        NA           
maptools                  "0.9-5"        NA           
markdown                  "1.1"          NA           
MatrixModels              "0.4-1"        NA           
matrixStats               "0.54.0"       NA           
mc2d                      "0.1-18"       NA           
mclust                    "5.4.5"        NA           
mco                       "1.0-15.1"     NA           
mda                       "0.4-10"       NA           
memoise                   "1.1.0"        NA           
mime                      "0.7"          NA           
minqa                     "1.2.4"        NA           
mlogit                    "1.0-1"        NA           
modelr                    "0.1.5"        NA           
modeltools                "0.2-22"       NA           
munsell                   "0.5.0"        NA           
nabor                     "0.5.0"        NA           
network                   "1.15"         NA           
networkD3                 "0.4"          NA           
nloptr                    "1.2.1"        NA           
NLP                       "0.2-0"        NA           
npsurv                    "0.4-0"        NA           
opencage                  "0.1.4"        NA           
openssl                   "1.3"          NA           
openxlsx                  "4.1.0.1"      NA           
optimx                    "2018-7.10"    NA           
osmar                     "1.1-7"        NA           
packrat                   "0.5.0"        NA           
party                     "1.3-3"        NA           
pbkrtest                  "0.4-7"        NA           
PerformanceAnalytics      "1.5.3"        NA           
pillar                    "1.4.2"        NA           
pkgconfig                 "2.0.2"        NA           
plogr                     "0.2.0"        NA           
plotly                    "4.9.0"        NA           
pls                       "2.7-1"        NA           
plyr                      "1.8.4"        NA           
png                       "0.1-7"        NA           
polyclip                  "1.10-0"       NA           
polynom                   "1.4-0"        NA           
prettyunits               "1.0.2"        NA           
processx                  "3.4.1"        NA           
progress                  "1.2.2"        NA           
promises                  "1.0.1"        NA           
pryr                      "0.1.4"        NA           
ps                        "1.3.0"        NA           
purrr                     "0.3.2"        NA           
qcc                       "2.7"          NA           
qmap                      "1.0-4"        NA           
qualityTools              "1.55"         NA           
quantmod                  "0.4-15"       NA           
quantreg                  "5.51"         NA           
questionr                 "0.7.0"        NA           
R.methodsS3               "1.7.1"        NA           
R.oo                      "1.22.0"       NA           
R.utils                   "2.9.0"        NA           
R6                        "2.4.0"        NA           
raster                    "2.9-23"       NA           
rbgm                      "0.0.5"        NA           
rbokeh                    "0.5.0"        NA           
rCarto                    "0.8"          NA           
RColorBrewer              "1.1-2"        NA           
Rcpp                      "1.0.2"        NA           
RcppArmadillo             "0.9.600.4.0"  NA           
RcppEigen                 "0.3.3.5.0"    NA           
RcppParallel              "4.4.3"        NA           
RCurl                     "1.95-4.12"    NA           
Rdpack                    "0.11-0"       NA           
readr                     "1.3.1"        NA           
readxl                    "1.3.1"        NA           
rematch                   "1.0.1"        NA           
reprex                    "0.3.0"        NA           
reshape2                  "1.4.3"        NA           
reticulate                "1.13"         NA           
rgdal                     "1.4-4"        NA           
rgeos                     "0.4-3"        NA           
rgexf                     "0.15.3"       NA           
RgoogleMaps               "1.4.4"        NA           
RGraphics                 "2.0-14"       NA           
Rgraphviz                 "2.22.0"       NA           
rio                       "0.5.16"       NA           
RISmed                    "2.1.7"        NA           
RJSONIO                   "1.3-1.2"      NA           
rlang                     "0.4.0"        NA           
rmarkdown                 "1.14"         NA           
rmdformats                "0.3.5"        NA           
rminer                    "1.4.2"        NA           
ROI                       "0.3-2"        NA           
ROI.models.globalOptTests "1.1"          NA           
ROI.models.miplib         "0.0-2"        NA           
ROI.models.netlib         "1.1"          NA           
ROI.plugin.alabama        "0.3-1"        NA           
ROI.plugin.deoptim        "0.3-2"        NA           
ROI.plugin.ecos           "0.3-1"        NA           
ROI.plugin.glpk           "0.3-0"        NA           
ROI.plugin.ipop           "0.2-5"        NA           
ROI.plugin.lpsolve        "0.3-2"        NA           
ROI.plugin.msbinlp        "0.3-0"        NA           
ROI.plugin.neos           "0.3-1"        NA           
ROI.plugin.optimx         "0.3-2"        NA           
Rook                      "1.1-1"        NA           
rprojroot                 "1.3-2"        NA           
RQDA                      "0.3-1"        NA           
rriskDistributions        "2.1.2"        NA           
rsconnect                 "0.8.15"       NA           
rscopus                   "0.6.3"        NA           
RSpectra                  "0.15-0"       NA           
RSQLite                   "2.1.2"        NA           
rstudioapi                "0.10"         NA           
RTriangle                 "1.6-0.10"     NA           
Rttf2pt1                  "1.3.7"        NA           
rtweet                    "0.6.9"        NA           
rvest                     "0.3.4"        NA           
sandwich                  "2.5-1"        NA           
satellite                 "1.0.1"        NA           
scales                    "1.0.0"        NA           
scatterplot3d             "0.3-41"       NA           
selectr                   "0.4-1"        NA           
sf                        "0.8-0"        NA           
shiny                     "1.3.2"        NA           
shinycssloaders           "0.2.0"        NA           
shinythemes               "1.1.2"        NA           
simmer                    "4.3.0"        NA           
simmer.plot               "0.1.15"       NA           
SixSigma                  "0.9-52"       NA           
SnowballC                 "0.6.0"        NA           
sourcetools               "0.1.7"        NA           
sp                        "1.3-1"        NA           
spacyr                    "1.2"          NA           
SparseM                   "1.77"         NA           
spData                    "0.3.0"        NA           
spDataLarge               "0.3.1"        NA           
statmod                   "1.4.32"       NA           
stopwords                 "1.0"          NA           
stringdist                "0.9.5.2"      NA           
stringi                   "1.4.3"        NA           
stringr                   "1.4.0"        NA           
strucchange               "1.5-1"        NA           
survival                  "2.44-1.1"     "recommended"
svglite                   "1.2.2"        NA           
sys                       "3.2"          NA           
TH.data                   "1.0-10"       NA           
tibble                    "2.1.3"        NA           
tictoc                    "1.0.1"        NA           
tidyr                     "0.8.3"        NA           
tidyselect                "0.2.5"        NA           
tidytext                  "0.2.2"        NA           
tidyverse                 "1.2.1"        NA           
timevis                   "0.5"          NA           
tinytex                   "0.15"         NA           
tm                        "0.7-6"        NA           
tokenizers                "0.2.1"        NA           
triebeard                 "0.3.0"        NA           
tweenr                    "1.0.1"        NA           
twitteR                   "1.1.9"        NA           
units                     "0.6-3"        NA           
urltools                  "1.7.3"        NA           
utf8                      "1.1.4"        NA           
vctrs                     "0.2.0"        NA           
viridis                   "0.5.1"        NA           
viridisLite               "0.3.0"        NA           
visNetwork                "2.0.7"        NA           
webshot                   "0.5.1"        NA           
widyr                     "0.1.1"        NA           
withr                     "2.1.2"        NA           
wordcloud                 "2.6"          NA           
xfun                      "0.8"          NA           
xgboost                   "0.90.0.2"     NA           
XML                       "3.98-1.20"    NA           
xmlrpc2                   "1.1"          NA           
xtable                    "1.8-4"        NA           
yaml                      "2.2.0"        NA           
zeallot                   "0.1.0"        NA           
zip                       "2.0.3"        NA           
zoo                       "1.8-6"        NA           
eha                       "2.6.0"        NA           
mc2d                      "0.1-18"       NA           
rriskDistributions        "2.1.2"        NA           
survival                  "2.44-1.1"     "recommended"
abind                     "1.4-5"        NA           
acepack                   "1.4.1"        NA           
ade4                      "1.7-10"       NA           
adegenet                  "2.1.1"        NA           
adegraphics               "1.0-9"        NA           
adephylo                  "1.1-11"       NA           
AER                       "1.2-5"        NA           
afex                      "0.18-0"       NA           
Amelia                    "1.7.4"        NA           
AMORE                     "0.2-15"       NA           
animation                 "2.5"          NA           
ape                       "5.0"          NA           
arm                       "1.9-3"        NA           
aroma.light               "3.8.0"        NA           
assertthat                "0.2.0"        NA           
backports                 "1.1.1"        NA           
base64enc                 "0.1-3"        NA           
BatchJobs                 "1.7"          NA           
BayesFactor               "0.9.12-2"     NA           
bayesm                    "3.1-0.1"      NA           
BBmisc                    "1.11"         NA           
bbmle                     "1.0.20"       NA           
beeswarm                  "0.2.3"        NA           
BiasedUrn                 "1.07"         NA           
bindr                     "0.1"          NA           
bindrcpp                  "0.2"          NA           
bio3d                     "2.3-4"        NA           
bit                       "1.1-12"       NA           
bit64                     "0.9-7"        NA           
bitops                    "1.0-6"        NA           
blob                      "1.1.0"        NA           
blockmodeling             "0.1.9"        NA           
BMS                       "0.3.4"        NA           
bold                      "0.5.0"        NA           
BoolNet                   "2.1.3"        NA           
BradleyTerry2             "1.0-8"        NA           
brew                      "1.0-6"        NA           
brglm                     "0.6.1"        NA           
broom                     "0.4.3"        NA           
ca                        "0.70"         NA           
Cairo                     "1.5-9"        NA           
cairoDevice               "2.24"         NA           
calibrate                 "1.7.2"        NA           
car                       "2.1-6"        NA           
carData                   "3.0-1"        NA           
caret                     "6.0-78"       NA           
caTools                   "1.17.1"       NA           
cellranger                "1.1.0"        NA           
checkmate                 "1.8.5"        NA           
chron                     "2.3-52"       NA           
cli                       "1.0.0"        NA           
clusterGeneration         "1.3.4"        NA           
cmprsk                    "2.2-7"        NA           
coda                      "0.19-1"       NA           
coin                      "1.2-1"        NA           
colorspace                "1.3-2"        NA           
combinat                  "0.0-8"        NA           
contfrac                  "1.1-11"       NA           
conting                   "1.6"          NA           
corpcor                   "1.6.9"        NA           
crayon                    "1.3.4"        NA           
crosstalk                 "1.0.0"        NA           
crul                      "0.5.0"        NA           
cubature                  "1.3-11"       NA           
curl                      "3.1"          NA           
CVST                      "0.2-1"        NA           
data.table                "1.10.4-3"     NA           
date                      "1.2-38"       NA           
DBI                       "0.7"          NA           
DBItest                   "1.5-2"        NA           
dbplyr                    "1.2.0"        NA           
ddalpha                   "1.3.1"        NA           
deal                      "1.2-37"       NA           
deldir                    "0.1-15"       NA           
DEoptimR                  "1.0-8"        NA           
desc                      "1.1.1"        NA           
deSolve                   "1.20"         NA           
devtools                  "1.13.4"       NA           
DiagnosisMed              "0.2.3"        NA           
dichromat                 "2.0-0"        NA           
digest                    "0.6.15"       NA           
dimRed                    "0.1.0"        NA           
distory                   "1.4.3"        NA           
DNAcopy                   "1.52.0"       NA           
doMC                      "1.3.5"        NA           
doParallel                "1.0.11"       NA           
DoseFinding               "0.9-15"       NA           
doSNOW                    "1.0.16"       NA           
dotCall64                 "0.9-5.2"      NA           
downloader                "0.4"          NA           
dplyr                     "0.7.4"        NA           
DRR                       "0.0.2"        NA           
DT                        "0.4"          NA           
dynlm                     "0.3-5"        NA           
e1071                     "1.6-8"        NA           
eco                       "4.0-1"        NA           
ecodist                   "2.0.1"        NA           
effects                   "4.0-0"        NA           
ellipse                   "0.4.1"        NA           
elliptic                  "1.3-7"        NA           
energy                    "1.7-2"        NA           
Epi                       "2.19"         NA           
epibasix                  "1.3"          NA           
epicalc                   "2.15.1.0"     NA           
epiR                      "0.9-93"       NA           
epitools                  "0.5-10"       NA           
eRm                       "0.15-7"       NA           
estimability              "1.2"          NA           
etm                       "0.6-2"        NA           
evaluate                  "0.10.1"       NA           
evd                       "2.3-2"        NA           
expm                      "0.999-2"      NA           
FactoMineR                "1.39"         NA           
fail                      "1.3"          NA           
fAsianOptions             "3042.82"      NA           
fAssets                   "3042.84"      NA           
fastcluster               "1.1.24"       NA           
fastICA                   "1.2-1"        NA           
fastmatch                 "1.1-0"        NA           
fBasics                   "3042.89"      NA           
fBonds                    "3042.78"      NA           
fCopulae                  "3042.82"      NA           
fExoticOptions            "3042.80"      NA           
fExtremes                 "3042.82"      NA           
fGarch                    "3042.83"      NA           
fields                    "9.0"          NA           
filehash                  "2.4-1"        NA           
fImport                   "3042.85"      NA           
fitbitScraper             "0.1.8"        NA           
fitcoach                  "1.0"          NA           
flashClust                "1.01-2"       NA           
fMultivar                 "3042.80"      NA           
fNonlinear                "3042.79"      NA           
fOptions                  "3042.86"      NA           
forcats                   "0.3.0"        NA           
foreach                   "1.4.4"        NA           
formatR                   "1.5"          NA           
Formula                   "1.2-2"        NA           
fPortfolio                "3042.83"      NA           
fRegression               "3042.82"      NA           
fTrading                  "3042.79"      NA           
fUnitRoots                "3042.79"      NA           
futile.logger             "1.4.3"        NA           
futile.options            "1.0.0"        NA           
future                    "1.7.0"        NA           
g.data                    "2.4"          NA           
gam                       "1.14-4"       NA           
gbm                       "2.1.3"        NA           
gdata                     "2.18.0"       NA           
geepack                   "1.2-1"        NA           
GenABEL                   "1.8-0"        NA           
GenABEL.data              "1.0.0"        NA           
genetics                  "1.3.8.1"      NA           
getopt                    "1.20.2"       NA           
ggplot2                   "2.2.1"        NA           
ggvis                     "0.4.3"        NA           
git2r                     "0.21.0"       NA           
glmnet                    "2.0-16"       NA           
globals                   "0.11.0"       NA           
glue                      "1.2.0"        NA           
gmaps                     "0.2"          NA           
gmodels                   "2.16.2"       NA           
gnm                       "1.0-8"        NA           
goftest                   "1.1-1"        NA           
googleVis                 "0.6.2"        NA           
gower                     "0.1.2"        NA           
gplots                    "3.0.1"        NA           
gregmisc                  "2.1.5"        NA           
gridBase                  "0.4-7"        NA           
gridExtra                 "2.3"          NA           
gsl                       "1.9-10.3"     NA           
gss                       "2.1-7"        NA           
gtable                    "0.2.0"        NA           
gtools                    "3.5.0"        NA           
Guerry                    "1.6-1"        NA           
haplo.stats               "1.7.7"        NA           
haven                     "1.1.1"        NA           
hdf5                      "1.6.10"       NA           
hexbin                    "1.27.1"       NA           
highr                     "0.6"          NA           
Hmisc                     "4.1-1"        NA           
hms                       "0.4.0"        NA           
htmlTable                 "1.11.2"       NA           
htmltools                 "0.3.6"        NA           
htmlwidgets               "1.0"          NA           
httpcode                  "0.2.0"        NA           
httpuv                    "1.3.5"        NA           
httr                      "1.3.1"        NA           
hwriter                   "1.3.2"        NA           
hypergeo                  "1.2-13"       NA           
igraph                    "1.1.2"        NA           
inline                    "0.3.14"       NA           
int64                     "1.1.2"        NA           
ipred                     "0.9-6"        NA           
irlba                     "2.3.2"        NA           
ISOcodes                  "2017.09.27"   NA           
ISOweek                   "0.6-2"        NA           
iterators                 "1.0.9"        NA           
its                       "1.1.8"        NA           
jsonlite                  "1.5"          NA           
kernlab                   "0.9-25"       NA           
knitr                     "1.17"         NA           
labeling                  "0.3"          NA           
lambda.r                  "1.2"          NA           
latticeExtra              "0.6-28"       NA           
lava                      "1.5.1"        NA           
lavaan                    "0.5-23.1097"  NA           
lazyeval                  "0.2.1"        NA           
leaps                     "3.0"          NA           
LearnBayes                "2.15"         NA           
lexRankr                  "0.5.0"        NA           
lhs                       "0.14"         NA           
listenv                   "0.6.0"        NA           
littler                   "0.3.3"        NA           
lme4                      "1.1-15"       NA           
lmerTest                  "2.0-36"       NA           
lmtest                    "0.9-35"       NA           
logspline                 "2.1.9"        NA           
lpSolve                   "5.6.13"       NA           
lsmeans                   "2.27-61"      NA           
lubridate                 "1.7.1"        NA           
Luminescence              "0.7.5"        NA           
magrittr                  "1.5"          NA           
MALDIquant                "1.16.4"       NA           
MALDIquantForeign         "0.11"         NA           
mapdata                   "2.3.0"        NA           
mapproj                   "1.2.6"        NA           
maps                      "3.3.0"        NA           
maptools                  "0.9-2"        NA           
maptree                   "1.4-7"        NA           
markdown                  "0.8"          NA           
Matching                  "4.9-2"        NA           
MatchIt                   "3.0.1"        NA           
matrixcalc                "1.0-3"        NA           
MatrixModels              "0.4-1"        NA           
matrixStats               "0.52.2"       NA           
maxLik                    "1.3-4"        NA           
mclust                    "5.4"          NA           
mcmc                      "0.9-5"        NA           
MCMCpack                  "1.4-0"        NA           
medAdherence              "1.03"         NA           
memoise                   "1.0.0"        NA           
mFilter                   "0.1-3"        NA           
mi                        "1.0"          NA           
mime                      "0.5"          NA           
miniUI                    "0.1.1"        NA           
minpack.lm                "1.2-1"        NA           
minqa                     "1.2.4"        NA           
misc3d                    "0.8-4"        NA           
miscTools                 "0.6-22"       NA           
mixtools                  "1.1.0"        NA           
mlbench                   "2.1-1"        NA           
mlmRev                    "1.0-6"        NA           
mnormt                    "1.5-5"        NA           
MNP                       "3.1-0"        NA           
mockery                   "0.4.1"        NA           
ModelMetrics              "1.1.0"        NA           
modeltools                "0.2-21"       NA           
msm                       "1.6.5"        NA           
multcomp                  "1.4-8"        NA           
multicore                 "0.2"          NA           
munsell                   "0.4.3"        NA           
mvnormtest                "0.1-9"        NA           
mvtnorm                   "1.0-7"        NA           
natserv                   "0.1.4"        NA           
ncdf4                     "1.16"         NA           
nleqslv                   "3.3.1"        NA           
nloptr                    "1.0.4"        NA           
NLP                       "0.1-11"       NA           
NMF                       "0.20.6"       NA           
nnls                      "1.4"          NA           
nortest                   "1.0-4"        NA           
numDeriv                  "2016.8-1"     NA           
nws                       "2.0.0.3"      NA           
openssl                   "1.0.1"        NA           
optparse                  "1.4.4"        NA           
pbapply                   "1.3-3"        NA           
pbdZMQ                    "0.3-2"        NA           
pbivnorm                  "0.6.0"        NA           
pbkrtest                  "0.4-7"        NA           
permute                   "0.9-4"        NA           
phangorn                  "2.4.0"        NA           
pheatmap                  "1.0.8"        NA           
phylobase                 "0.8.4"        NA           
phytools                  "0.6-44"       NA           
pillar                    "1.0.1"        NA           
pkgconfig                 "2.0.1"        NA           
pkgKitten                 "0.1.4"        NA           
pkgmaker                  "0.22"         NA           
plogr                     "0.1-1"        NA           
plotly                    "4.7.1"        NA           
plotrix                   "3.6-6"        NA           
plyr                      "1.8.4"        NA           
png                       "0.1-7"        NA           
polspline                 "1.1.12"       NA           
polyclip                  "1.6-1"        NA           
polyCub                   "0.6.1"        NA           
praise                    "1.0.0"        NA           
prettyunits               "1.0.2"        NA           
princurve                 "1.1-12"       NA           
prodlim                   "1.6.1"        NA           
profileModel              "0.5-9"        NA           
progress                  "1.1.2"        NA           
proto                     "1.0.0"        NA           
PSCBS                     "0.63.0"       NA           
pscl                      "1.5.2"        NA           
psy                       "1.1"          NA           
psych                     "1.7.8"        NA           
purrr                     "0.2.4"        NA           
pwt                       "7.1-1"        NA           
pwt8                      "8.1-1"        NA           
pwt9                      "9.0-0"        NA           
qqman                     "0.1.4"        NA           
qtl                       "1.42-8"       NA           
quadprog                  "1.5-5"        NA           
quantmod                  "0.4-12"       NA           
quantreg                  "5.35"         NA           
qvcalc                    "0.9-1"        NA           
R.cache                   "0.12.0"       NA           
R.methodsS3               "1.7.1"        NA           
R.oo                      "1.21.0"       NA           
R.utils                   "2.6.0"        NA           
R6                        "2.2.2"        NA           
RandomFields              "3.1.50"       NA           
RandomFieldsUtils         "0.3.25"       NA           
randomForest              "4.6-12"       NA           
RaschSampler              "0.8-8"        NA           
raster                    "2.6-7"        NA           
Rcmdr                     "2.4-1"        NA           
RcmdrMisc                 "1.0-7"        NA           
RColorBrewer              "1.1-2"        NA           
Rcpp                      "0.12.15"      NA           
RcppArmadillo             "0.8.300.1.0"  NA           
RcppEigen                 "0.3.3.4.0"    NA           
RcppGSL                   "0.3.3"        NA           
RcppRoll                  "0.2.2"        NA           
RCurl                     "1.95-4.8"     NA           
readBrukerFlexData        "1.8.5"        NA           
readMzXmlData             "2.8.1"        NA           
readr                     "1.1.1"        NA           
readstata13               "0.9.0"        NA           
readxl                    "1.0.0"        NA           
recipes                   "0.1.0"        NA           
registry                  "0.5"          NA           
relimp                    "1.0-5"        NA           
rematch                   "1.0.1"        NA           
rentrez                   "1.2.0"        NA           
repr                      "0.12.0"       NA           
reshape                   "0.8.7"        NA           
reshape2                  "1.4.2"        NA           
rgenoud                   "5.7-12.4"     NA           
rggobi                    "2.1.21"       NA           
rgl                       "0.99.9"       NA           
Rglpk                     "0.6-3"        NA           
rglwidget                 "0.2.1"        NA           
RGtk2                     "2.20.34"      NA           
rhandsontable             "0.3.5"        NA           
RInside                   "0.2.14"       NA           
ritis                     "0.7.0"        NA           
rjags                     "4-6"          NA           
rJava                     "0.9-9"        NA           
rjson                     "0.2.15"       NA           
RJSONIO                   "1.3-0"        NA           
rlang                     "0.2.0"        NA           
rlist                     "0.4.6.1"      NA           
RLumShiny                 "0.2.0"        NA           
Rmpi                      "0.6-6"        NA           
rms                       "5.1-2"        NA           
RMySQL                    "0.10.13"      NA           
rncl                      "0.8.2"        NA           
rneos                     "0.3-2"        NA           
RNetCDF                   "1.9-1"        NA           
RNeXML                    "2.0.7"        NA           
rngtools                  "1.2.4"        NA           
Rniftilib                 "0.0-35"       NA           
robustbase                "0.92-8"       NA           
ROCR                      "1.0-7"        NA           
RODBC                     "1.3-15"       NA           
rotl                      "3.0.3"        NA           
RPostgreSQL               "0.4"          NA           
rprojroot                 "1.2"          NA           
RProtoBuf                 "0.4.11"       NA           
RQuantLib                 "0.4.4"        NA           
rredlist                  "0.4.0"        NA           
RSclient                  "0.7-3"        NA           
rsdmx                     "0.5-11"       NA           
Rserve                    "1.7-3"        NA           
Rsolnp                    "1.16"         NA           
rsprng                    "1.0"          NA           
RSQLite                   "2.0"          NA           
rstudioapi                "0.7"          NA           
Rsymphony                 "0.1-28"       NA           
RUnit                     "0.4.31"       NA           
sandwich                  "2.4-0"        NA           
scales                    "0.5.0"        NA           
scatterD3                 "0.8.1"        NA           
scatterplot3d             "0.3-40"       NA           
segmented                 "0.5-2.2"      NA           
sem                       "3.1-9"        NA           
semTools                  "0.4-14"       NA           
sendmailR                 "1.2-1"        NA           
seqinr                    "3.4-5"        NA           
seroincidence             "1.0.5"        NA           
sfsmisc                   "1.1-1"        NA           
shape                     "1.4.3"        NA           
shiny                     "1.0.5"        NA           
shinyBS                   "0.61"         NA           
shinydashboard            "0.6.1"        NA           
shinyjs                   "0.9.1"        NA           
slam                      "0.1-42"       NA           
sm                        "2.2-5.4"      NA           
sn                        "1.5-1"        NA           
snow                      "0.4-2"        NA           
SnowballC                 "0.5.1"        NA           
solrium                   "1.0.0"        NA           
sourcetools               "0.1.6"        NA           
sp                        "1.3-1"        NA           
spam                      "2.1-2"        NA           
SparseM                   "1.77"         NA           
spatstat                  "1.53-2"       NA           
spatstat.data             "1.1-1"        NA           
spatstat.utils            "1.7-1"        NA           
spc                       "0.5.4"        NA           
spdep                     "0.6-15"       NA           
stabledist                "0.7-1"        NA           
statmod                   "1.4.30"       NA           
stringi                   "1.1.6"        NA           
stringr                   "1.3.0"        NA           
strucchange               "1.5-1"        NA           
surveillance              "1.16.0"       NA           
survey                    "3.32-1"       NA           
taxize                    "0.9.0"        NA           
tcltk2                    "1.2-11"       NA           
TeachingDemos             "2.10"         NA           
tensor                    "1.5"          NA           
testit                    "0.7"          NA           
testthat                  "2.0.0"        NA           
tgp                       "2.4-14"       NA           
TH.data                   "1.0-8"        NA           
tibble                    "1.4.1"        NA           
tidyr                     "0.8.0"        NA           
tidyselect                "0.2.4"        NA           
tikzDevice                "0.10-1"       NA           
timeDate                  "3043.102"     NA           
timeSeries                "3042.102"     NA           
tkrplot                   "0.0-23"       NA           
tm                        "0.7-2"        NA           
treescape                 "1.10.18"      NA           
treespace                 "1.1.1"        NA           
triebeard                 "0.3.0"        NA           
truncdist                 "1.0-2"        NA           
truncnorm                 "1.0-7"        NA           
tseries                   "0.10-43"      NA           
TTR                       "0.23-3"       NA           
urca                      "1.3-0"        NA           
urltools                  "1.7.0"        NA           
utf8                      "1.1.3"        NA           
uuid                      "0.1-2"        NA           
V8                        "1.5"          NA           
vcd                       "1.4-3"        NA           
vcdExtra                  "0.7-1"        NA           
vegan                     "2.4-6"        NA           
VGAM                      "1.0-4"        NA           
vioplot                   "0.2"          NA           
viridis                   "0.5.0"        NA           
viridisLite               "0.3.0"        NA           
WDI                       "2.4"          NA           
webmockr                  "0.1.0"        NA           
whisker                   "0.3-2"        NA           
WikidataR                 "1.4.0"        NA           
WikipediR                 "1.5.0"        NA           
wikitaxa                  "0.2.0"        NA           
withr                     "2.1.0"        NA           
wordcloud                 "2.5"          NA           
worrms                    "0.2.0"        NA           
XML                       "3.98-1.10"    NA           
xml2                      "1.2.0"        NA           
XMLRPC                    "0.3-0"        NA           
xtable                    "1.8-2"        NA           
xts                       "0.10-1"       NA           
yaml                      "2.1.14"       NA           
Zelig                     "5.1.6"        NA           
zoo                       "1.8-1"        NA           
base                      "3.4.4"        "base"       
boot                      "1.3-20"       "recommended"
class                     "7.3-14"       "recommended"
cluster                   "2.0.6"        "recommended"
codetools                 "0.2-15"       "recommended"
compiler                  "3.4.4"        "base"       
datasets                  "3.4.4"        "base"       
foreign                   "0.8-69"       "recommended"
graphics                  "3.4.4"        "base"       
grDevices                 "3.4.4"        "base"       
grid                      "3.4.4"        "base"       
KernSmooth                "2.23-15"      "recommended"
lattice                   "0.20-35"      "recommended"
MASS                      "7.3-49"       "recommended"
Matrix                    "1.2-12"       "recommended"
methods                   "3.4.4"        "base"       
mgcv                      "1.8-23"       "recommended"
nlme                      "3.1-131"      "recommended"
nnet                      "7.3-12"       "recommended"
parallel                  "3.4.4"        "base"       
rpart                     "4.1-13"       "recommended"
spatial                   "7.3-11"       "recommended"
splines                   "3.4.4"        "base"       
stats                     "3.4.4"        "base"       
stats4                    "3.4.4"        "base"       
survival                  "2.41-3"       "recommended"
tcltk                     "3.4.4"        "base"       
tools                     "3.4.4"        "base"       
utils                     "3.4.4"        "base"       
                          Depends                                                                                                                        
abind                     "R (>= 1.5.0)"                                                                                                                 
acepack                   NA                                                                                                                             
adabag                    "rpart, caret, foreach, doParallel"                                                                                            
alabama                   "R (>= 2.10.1), numDeriv"                                                                                                      
alluvial                  NA                                                                                                                             
askpass                   NA                                                                                                                             
assertthat                NA                                                                                                                             
backports                 "R (>= 3.0.0)"                                                                                                                 
base64enc                 "R (>= 2.9.0)"                                                                                                                 
bgmfiles                  NA                                                                                                                             
BH                        NA                                                                                                                             
bibliometrix              "R (>= 3.3.0)"                                                                                                                 
bibtex                    "R (>= 3.0.2)"                                                                                                                 
BiocGenerics              "methods, utils, graphics, stats, parallel"                                                                                    
BiocInstaller             "R (>= 3.4.0)"                                                                                                                 
bit                       "R (>= 2.9.2)"                                                                                                                 
bit64                     "R (>= 3.0.1), bit (>= 1.1-12), utils, methods, stats"                                                                         
bitops                    NA                                                                                                                             
blob                      NA                                                                                                                             
bookdown                  NA                                                                                                                             
brew                      NA                                                                                                                             
broom                     "R (>= 3.1)"                                                                                                                   
callr                     NA                                                                                                                             
car                       "R (>= 3.2.0), carData (>= 3.0-0)"                                                                                             
carData                   "R (>= 3.0)"                                                                                                                   
caTools                   "R (>= 2.2.0)"                                                                                                                 
cellranger                "R (>= 3.0.0)"                                                                                                                 
checkmate                 "R (>= 3.0.0)"                                                                                                                 
classInt                  "R (>= 2.2)"                                                                                                                   
cli                       "R (>= 2.10)"                                                                                                                  
clipr                     NA                                                                                                                             
colorspace                "R (>= 3.0.0), methods"                                                                                                        
corrplot                  NA                                                                                                                             
cowplot                   "R (>= 3.2.0),\nggplot2 (>= 2.0.0),"                                                                                           
crayon                    NA                                                                                                                             
crosstalk                 NA                                                                                                                             
crul                      NA                                                                                                                             
csvread                   "R (>= 2.15), methods"                                                                                                         
Cubist                    "lattice"                                                                                                                      
curl                      "R (>= 3.0.0)"                                                                                                                 
data.table                "R (>= 3.1.0)"                                                                                                                 
data.tree                 "R (>= 3.0)"                                                                                                                   
DBI                       "R (>= 3.0.0), methods"                                                                                                        
dendextend                "R (>= 3.0.0)"                                                                                                                 
DEoptim                   "parallel"                                                                                                                     
DiagrammeR                "R (>= 3.2.0)"                                                                                                                 
digest                    "R (>= 3.1.0)"                                                                                                                 
downloader                NA                                                                                                                             
dplyr                     "R (>= 3.2.0)"                                                                                                                 
DT                        NA                                                                                                                             
dygraphs                  "R (>= 3.0)"                                                                                                                   
e1071                     NA                                                                                                                             
ECOSolveR                 NA                                                                                                                             
eha                       "R (>= 3.0.0), survival (>= 2.42-5)"                                                                                           
ellipsis                  "R (>= 3.1)"                                                                                                                   
evaluate                  "R (>= 3.0.2)"                                                                                                                 
expm                      "Matrix"                                                                                                                       
extrafont                 "R (>= 2.15)"                                                                                                                  
extrafontdb               "R (>= 2.14)"                                                                                                                  
factoextra                "R (>= 3.1.2), ggplot2 (>= 2.2.0)"                                                                                             
FactoMineR                "R (>= 3.0.0)"                                                                                                                 
fansi                     "R (>= 3.1.0)"                                                                                                                 
farver                    NA                                                                                                                             
fastmatch                 NA                                                                                                                             
FinCal                    NA                                                                                                                             
fitdistrplus              "R (>= 3.2.0), MASS, grDevices, survival, methods, npsurv"                                                                     
flexdashboard             "R (>= 3.0.2)"                                                                                                                 
forcats                   "R (>= 3.1)"                                                                                                                   
foreign                   "R (>= 3.0.0)"                                                                                                                 
Formula                   "R (>= 2.0.0), stats"                                                                                                          
fs                        "R (>= 3.1)"                                                                                                                   
gbRd                      "tools"                                                                                                                        
gdalUtils                 "R (>= 2.14.0)"                                                                                                                
gdtools                   NA                                                                                                                             
genalg                    NA                                                                                                                             
generics                  "R (>= 3.1)"                                                                                                                   
geojsonR                  "R(>= 3.2.3)"                                                                                                                  
geosphere                 "R (>= 3.0.0)"                                                                                                                 
gepaf                     NA                                                                                                                             
ggforce                   "ggplot2 (>= 3.0.0), R (>= 3.3.0)"                                                                                             
ggmap                     "R (>= 3.1.0), ggplot2 (>= 2.2.0)"                                                                                             
ggplot2                   "R (>= 3.2)"                                                                                                                   
ggpubr                    "R (>= 3.1.0), ggplot2, magrittr"                                                                                              
ggraph                    "R (>= 2.10), ggplot2 (>= 2.0.0)"                                                                                              
ggrepel                   "R (>= 3.0.0), ggplot2 (>= 2.2.0)"                                                                                             
ggsci                     "R (>= 3.0.2)"                                                                                                                 
ggsignif                  NA                                                                                                                             
gistr                     NA                                                                                                                             
globalOptTests            NA                                                                                                                             
glue                      "R (>= 3.1)"                                                                                                                   
graph                     "R (>= 2.10), methods, BiocGenerics (>= 0.13.11)"                                                                              
gridExtra                 NA                                                                                                                             
gtable                    "R (>= 3.0)"                                                                                                                   
gWidgets                  "methods, utils"                                                                                                               
gWidgetsRGtk2             "methods, grDevices, utils, graphics, RGtk2, gWidgets,\ncairoDevice"                                                           
haven                     "R (>= 3.2)"                                                                                                                   
highr                     "R (>= 3.2.3)"                                                                                                                 
Hmisc                     "lattice, survival (>= 2.40-1), Formula, ggplot2 (>= 2.2)"                                                                     
hms                       NA                                                                                                                             
htmlTable                 NA                                                                                                                             
htmltools                 "R (>= 2.14.1)"                                                                                                                
htmlwidgets               NA                                                                                                                             
httpcode                  NA                                                                                                                             
httpuv                    "R (>= 2.15.1)"                                                                                                                
httr                      "R (>= 3.2)"                                                                                                                   
hunspell                  "R (>= 3.0.2)"                                                                                                                 
igraph                    "methods"                                                                                                                      
influenceR                "R (>= 3.2.0)"                                                                                                                 
isoband                   NA                                                                                                                             
ISOcodes                  "R (>= 2.10.0)"                                                                                                                
janeaustenr               "R (>= 3.1.2)"                                                                                                                 
jpeg                      "R (>= 2.9.0)"                                                                                                                 
jsonlite                  "methods"                                                                                                                      
kernlab                   "R (>= 2.10)"                                                                                                                  
kknn                      "R (>= 2.10)"                                                                                                                  
knitr                     "R (>= 3.2.3)"                                                                                                                 
labeling                  NA                                                                                                                             
labelled                  NA                                                                                                                             
later                     NA                                                                                                                             
latticeExtra              "R (>= 2.10.0), lattice, RColorBrewer"                                                                                         
lazyeval                  "R (>= 3.1.0)"                                                                                                                 
leaflet                   "R (>= 3.1.0)"                                                                                                                 
leaflet.extras            "R (>= 3.1.0), leaflet (>= 2.0.0)"                                                                                             
leafpop                   NA                                                                                                                             
lme4                      "R (>= 3.2.0), Matrix (>= 1.2-1), methods, stats"                                                                              
lmtest                    "R (>= 3.0.0), stats, zoo"                                                                                                     
lpSolve                   NA                                                                                                                             
lpSolveAPI                NA                                                                                                                             
lsei                      NA                                                                                                                             
lubridate                 "methods, R (>= 3.0.0)"                                                                                                        
magrittr                  NA                                                                                                                             
maps                      "R (>= 3.0.0)"                                                                                                                 
maptools                  "R (>= 2.10), sp (>= 1.0-11)"                                                                                                  
markdown                  "R (>= 2.11.1)"                                                                                                                
MatrixModels              "R (>= 3.0.1)"                                                                                                                 
matrixStats               "R (>= 2.12.0)"                                                                                                                
mc2d                      "R (>= 2.10.0), mvtnorm"                                                                                                       
mclust                    "R (>= 3.0)"                                                                                                                   
mco                       "R (>= 3.0.0)"                                                                                                                 
mda                       "R (>= 1.9.0), stats, class"                                                                                                   
memoise                   NA                                                                                                                             
mime                      NA                                                                                                                             
minqa                     NA                                                                                                                             
mlogit                    "R (>= 2.10), Formula, zoo, lmtest"                                                                                            
modelr                    "R (>= 3.2)"                                                                                                                   
modeltools                "stats, stats4"                                                                                                                
munsell                   NA                                                                                                                             
nabor                     "R (>= 3.0.2)"                                                                                                                 
network                   "R (>= 2.10), utils"                                                                                                           
networkD3                 "R (>= 3.0.0)"                                                                                                                 
nloptr                    NA                                                                                                                             
NLP                       "R (>= 3.2.0)"                                                                                                                 
npsurv                    "lsei"                                                                                                                         
opencage                  NA                                                                                                                             
openssl                   NA                                                                                                                             
openxlsx                  "R (>= 3.3.0)"                                                                                                                 
optimx                    NA                                                                                                                             
osmar                     "R (>= 2.10), methods, XML, RCurl, geosphere"                                                                                  
packrat                   "R (>= 3.0.0)"                                                                                                                 
party                     "R (>= 3.0.0), methods, grid, stats, mvtnorm (>= 1.0-2),\nmodeltools (>= 0.2-21), strucchange"                                 
pbkrtest                  "R (>= 3.2.3), lme4 (>= 1.1.10)"                                                                                               
PerformanceAnalytics      "R (>= 3.0.0), xts (>= 0.10.0)"                                                                                                
pillar                    NA                                                                                                                             
pkgconfig                 NA                                                                                                                             
plogr                     NA                                                                                                                             
plotly                    "R (>= 3.2.0), ggplot2 (>= 3.0.0)"                                                                                             
pls                       "R (>= 2.10)"                                                                                                                  
plyr                      "R (>= 3.1.0)"                                                                                                                 
png                       "R (>= 2.9.0)"                                                                                                                 
polyclip                  "R (>= 3.0.0)"                                                                                                                 
polynom                   NA                                                                                                                             
prettyunits               NA                                                                                                                             
processx                  NA                                                                                                                             
progress                  NA                                                                                                                             
promises                  NA                                                                                                                             
pryr                      "R (>= 3.1.0)"                                                                                                                 
ps                        "R (>= 3.1)"                                                                                                                   
purrr                     "R (>= 3.1)"                                                                                                                   
qcc                       "R (>= 3.0)"                                                                                                                   
qmap                      "R (>= 2.8.0), fitdistrplus"                                                                                                   
qualityTools              "R(>= 2.15.0), graphics, methods, Rsolnp, MASS"                                                                                
quantmod                  "R (>= 3.2.0), xts(>= 0.9-0), zoo, TTR(>= 0.2), methods"                                                                       
quantreg                  "R (>= 2.6), stats, SparseM"                                                                                                   
questionr                 "R (>= 2.10)"                                                                                                                  
R.methodsS3               "R (>= 2.13.0)"                                                                                                                
R.oo                      "R (>= 2.13.0), R.methodsS3 (>= 1.7.1)"                                                                                        
R.utils                   "R (>= 2.14.0), R.oo (>= 1.22.0)"                                                                                              
R6                        "R (>= 3.0)"                                                                                                                   
raster                    "sp (>= 1.2-0), R (>= 3.0.0)"                                                                                                  
rbgm                      "R (>= 3.2.2), raster, sp"                                                                                                     
rbokeh                    NA                                                                                                                             
rCarto                    "RColorBrewer,maptools,classInt"                                                                                               
RColorBrewer              "R (>= 2.0.0)"                                                                                                                 
Rcpp                      "R (>= 3.0.0)"                                                                                                                 
RcppArmadillo             "R (>= 3.3.0)"                                                                                                                 
RcppEigen                 "R (>= 2.15.1)"                                                                                                                
RcppParallel              "R (>= 3.0.2)"                                                                                                                 
RCurl                     "R (>= 3.0.0), methods, bitops"                                                                                                
Rdpack                    "R (>= 2.15.0), methods"                                                                                                       
readr                     "R (>= 3.1)"                                                                                                                   
readxl                    NA                                                                                                                             
rematch                   NA                                                                                                                             
reprex                    "R (>= 3.1)"                                                                                                                   
reshape2                  "R (>= 3.1)"                                                                                                                   
reticulate                "R (>= 3.0)"                                                                                                                   
rgdal                     "R (>= 3.3.0), methods, sp (>= 1.1-0)"                                                                                         
rgeos                     "R (>= 3.3.0), methods, sp (>= 1.1-0)"                                                                                         
rgexf                     "XML, Rook, igraph"                                                                                                            
RgoogleMaps               "R (>= 2.10)"                                                                                                                  
RGraphics                 "R (>= 2.13.0), datasets, stats, grDevices, graphics, methods,\ngrid"                                                          
Rgraphviz                 "R (>= 2.6.0), methods, utils, graph, grid"                                                                                    
rio                       "R (>= 2.15.0)"                                                                                                                
RISmed                    "R (>= 2.8.0), methods"                                                                                                        
RJSONIO                   NA                                                                                                                             
rlang                     "R (>= 3.2.0)"                                                                                                                 
rmarkdown                 "R (>= 3.0)"                                                                                                                   
rmdformats                NA                                                                                                                             
rminer                    NA                                                                                                                             
ROI                       "R (>= 2.10)"                                                                                                                  
ROI.models.globalOptTests NA                                                                                                                             
ROI.models.miplib         "R (>= 2.10)"                                                                                                                  
ROI.models.netlib         NA                                                                                                                             
ROI.plugin.alabama        NA                                                                                                                             
ROI.plugin.deoptim        NA                                                                                                                             
ROI.plugin.ecos           NA                                                                                                                             
ROI.plugin.glpk           NA                                                                                                                             
ROI.plugin.ipop           NA                                                                                                                             
ROI.plugin.lpsolve        NA                                                                                                                             
ROI.plugin.msbinlp        NA                                                                                                                             
ROI.plugin.neos           NA                                                                                                                             
ROI.plugin.optimx         NA                                                                                                                             
Rook                      "R (>= 2.13.0)"                                                                                                                
rprojroot                 "R (>= 3.0.0)"                                                                                                                 
RQDA                      "R (>= 2.8.0), RSQLite(>= 2.0), gWidgetsRGtk2 (>= 0.0-36),\nDBI(>= 0.4-9)"                                                     
rriskDistributions        "R(>= 2.11.0)"                                                                                                                 
rsconnect                 "R (>= 3.0.0)"                                                                                                                 
rscopus                   "R (>= 3.2.0)"                                                                                                                 
RSpectra                  "R (>= 3.0.2)"                                                                                                                 
RSQLite                   "R (>= 3.1.0)"                                                                                                                 
rstudioapi                NA                                                                                                                             
RTriangle                 "R (>= 3.0.0)"                                                                                                                 
Rttf2pt1                  "R (>= 2.15)"                                                                                                                  
rtweet                    "R (>= 3.1.0)"                                                                                                                 
rvest                     "R (>= 3.2), xml2"                                                                                                             
sandwich                  "R (>= 2.10.0)"                                                                                                                
satellite                 "R (>= 2.10), raster, methods, utils, stats, grDevices,\ngraphics"                                                             
scales                    "R (>= 3.1)"                                                                                                                   
scatterplot3d             "R (>= 2.7.0)"                                                                                                                 
selectr                   "R (>= 3.0)"                                                                                                                   
sf                        "methods,\nR (>= 3.3.0)"                                                                                                       
shiny                     "R (>= 3.0.2), methods"                                                                                                        
shinycssloaders           NA                                                                                                                             
shinythemes               "R (>= 3.0.0)"                                                                                                                 
simmer                    "R (>= 3.1.2)"                                                                                                                 
simmer.plot               "R (>= 3.1.2), simmer (>= 3.6.0), ggplot2 (>= 2.2.0)"                                                                          
SixSigma                  "R (>= 2.14.0)"                                                                                                                
SnowballC                 NA                                                                                                                             
sourcetools               "R (>= 3.0.2)"                                                                                                                 
sp                        "R (>= 3.0.0), methods"                                                                                                        
spacyr                    "R (>= 3.0.0), methods"                                                                                                        
SparseM                   "R (>= 2.15), methods"                                                                                                         
spData                    "R (>= 3.3.0)"                                                                                                                 
spDataLarge               "R (>= 3.3.0)"                                                                                                                 
statmod                   "R (>= 3.0.0)"                                                                                                                 
stopwords                 "R (>= 2.10)"                                                                                                                  
stringdist                "R (>= 2.15.3)"                                                                                                                
stringi                   "R (>= 2.14)"                                                                                                                  
stringr                   "R (>= 3.1)"                                                                                                                   
strucchange               "R (>= 2.10.0), zoo, sandwich"                                                                                                 
survival                  "R (>= 2.13.0)"                                                                                                                
svglite                   "R (>= 3.0.0)"                                                                                                                 
sys                       NA                                                                                                                             
TH.data                   "R (>= 2.10.0), survival, MASS"                                                                                                
tibble                    "R (>= 3.1.0)"                                                                                                                 
tictoc                    "R (>= 2.15),\nmethods"                                                                                                        
tidyr                     "R (>= 3.1)"                                                                                                                   
tidyselect                "R (>= 3.1)"                                                                                                                   
tidytext                  "R (>= 2.10)"                                                                                                                  
tidyverse                 NA                                                                                                                             
timevis                   "R (>= 3.1.0)"                                                                                                                 
tinytex                   NA                                                                                                                             
tm                        "R (>= 3.2.0), NLP (>= 0.2-0)"                                                                                                 
tokenizers                "R (>= 3.1.3)"                                                                                                                 
triebeard                 NA                                                                                                                             
tweenr                    "R (>= 3.2.0)"                                                                                                                 
twitteR                   "R (>= 2.12.0)"                                                                                                                
units                     "R (>= 3.0.2)"                                                                                                                 
urltools                  "R (>= 2.10)"                                                                                                                  
utf8                      "R (>= 2.10)"                                                                                                                  
vctrs                     "R (>= 3.2)"                                                                                                                   
viridis                   "R (>= 2.10), viridisLite (>= 0.3.0)"                                                                                          
viridisLite               "R (>= 2.10)"                                                                                                                  
visNetwork                "R (>= 3.0)"                                                                                                                   
webshot                   "R (>= 3.0)"                                                                                                                   
widyr                     NA                                                                                                                             
withr                     "R (>= 3.0.2)"                                                                                                                 
wordcloud                 "methods, RColorBrewer"                                                                                                        
xfun                      NA                                                                                                                             
xgboost                   "R (>= 3.3.0)"                                                                                                                 
XML                       "R (>= 2.13.0), methods, utils"                                                                                                
xmlrpc2                   NA                                                                                                                             
xtable                    "R (>= 2.10.0)"                                                                                                                
yaml                      NA                                                                                                                             
zeallot                   NA                                                                                                                             
zip                       NA                                                                                                                             
zoo                       "R (>= 3.1.0), stats"                                                                                                          
eha                       "R (>= 3.0.0), survival (>= 2.42-5)"                                                                                           
mc2d                      "R (>= 2.10.0), mvtnorm"                                                                                                       
rriskDistributions        "R(>= 2.11.0)"                                                                                                                 
survival                  "R (>= 2.13.0)"                                                                                                                
abind                     "R (>= 1.5.0)"                                                                                                                 
acepack                   NA                                                                                                                             
ade4                      "R (>= 2.10)"                                                                                                                  
adegenet                  "R (>= 2.14), methods, ade4"                                                                                                   
adegraphics               "R (>= 3.0.2)"                                                                                                                 
adephylo                  "methods, ade4 (>= 1.7-10)"                                                                                                    
AER                       "R (>= 2.13.0), car (>= 2.0-19), lmtest, sandwich, survival (>=\n2.37-5), zoo"                                                 
afex                      "R (>= 3.1.0), lme4 (>= 1.1-8), lsmeans (>= 2.17)"                                                                             
Amelia                    "R (>= 3.0.2), Rcpp (>= 0.11)"                                                                                                 
AMORE                     NA                                                                                                                             
animation                 "R (>= 2.14.0)"                                                                                                                
ape                       "R (>= 3.2.0)"                                                                                                                 
arm                       "R (>= 3.1.0), MASS, Matrix (>= 1.0), stats, lme4 (>= 1.0)"                                                                    
aroma.light               "R (>= 2.15.2)"                                                                                                                
assertthat                NA                                                                                                                             
backports                 "R (>= 3.0.0)"                                                                                                                 
base64enc                 "R (>= 2.9.0)"                                                                                                                 
BatchJobs                 "R (>= 3.0.0), BBmisc (>= 1.9), methods"                                                                                       
BayesFactor               "R (>= 3.0.2), coda, Matrix (>= 1.1-1)"                                                                                        
bayesm                    "R (>= 3.2.0)"                                                                                                                 
BBmisc                    NA                                                                                                                             
bbmle                     "R (>= 3.0.0), stats4"                                                                                                         
beeswarm                  NA                                                                                                                             
BiasedUrn                 NA                                                                                                                             
bindr                     NA                                                                                                                             
bindrcpp                  NA                                                                                                                             
bio3d                     "R (>= 3.1.0)"                                                                                                                 
bit                       "R (>= 2.9.2)"                                                                                                                 
bit64                     "R (>= 3.0.1), bit (>= 1.1-12), utils, methods, stats"                                                                         
bitops                    NA                                                                                                                             
blob                      NA                                                                                                                             
blockmodeling             NA                                                                                                                             
BMS                       "R (>= 2.5)"                                                                                                                   
bold                      NA                                                                                                                             
BoolNet                   NA                                                                                                                             
BradleyTerry2             "R (>= 2.10)"                                                                                                                  
brew                      NA                                                                                                                             
brglm                     "R (>= 2.6.0), profileModel"                                                                                                   
broom                     NA                                                                                                                             
ca                        "R (>= 3.0.0)"                                                                                                                 
Cairo                     "R (>= 2.4.0)"                                                                                                                 
cairoDevice               "R (>= 2.12.0)"                                                                                                                
calibrate                 "R (>= 1.8.0), MASS"                                                                                                           
car                       "R (>= 3.2.0)"                                                                                                                 
carData                   "R (>= 3.0)"                                                                                                                   
caret                     "R (>= 2.10), lattice (>= 0.20), ggplot2"                                                                                      
caTools                   "R (>= 2.2.0)"                                                                                                                 
cellranger                "R (>= 3.0.0)"                                                                                                                 
checkmate                 "R (>= 3.0.0)"                                                                                                                 
chron                     "R (>= 2.12.0)"                                                                                                                
cli                       "R (>= 2.10)"                                                                                                                  
clusterGeneration         "R (>= 2.9.1), MASS"                                                                                                           
cmprsk                    "R (>= 2.15.0), survival"                                                                                                      
coda                      "R (>= 2.14.0)"                                                                                                                
coin                      "R (>= 2.14.0), methods, survival"                                                                                             
colorspace                "R (>= 2.13.0), methods"                                                                                                       
combinat                  NA                                                                                                                             
contfrac                  NA                                                                                                                             
conting                   "R (>= 2.15.0)"                                                                                                                
corpcor                   "R (>= 3.0.2)"                                                                                                                 
crayon                    NA                                                                                                                             
crosstalk                 NA                                                                                                                             
crul                      NA                                                                                                                             
cubature                  NA                                                                                                                             
curl                      "R (>= 3.0.0)"                                                                                                                 
CVST                      "kernlab,Matrix"                                                                                                               
data.table                "R (>= 3.0.0)"                                                                                                                 
date                      NA                                                                                                                             
DBI                       "R (>= 3.0.0), methods"                                                                                                        
DBItest                   "R (>= 3.0.0)"                                                                                                                 
dbplyr                    "R (>= 3.2)"                                                                                                                   
ddalpha                   "stats, utils, graphics, grDevices, MASS, class, robustbase,\nsfsmisc"                                                         
deal                      "R (>= 2.0.0)"                                                                                                                 
deldir                    "R (>= 0.99)"                                                                                                                  
DEoptimR                  NA                                                                                                                             
desc                      "R (>= 3.1.0)"                                                                                                                 
deSolve                   "R (>= 2.15.0)"                                                                                                                
devtools                  "R (>= 3.0.2)"                                                                                                                 
DiagnosisMed              "R (>= 2.7.2),epitools, TeachingDemos, tcltk, AMORE,utils"                                                                     
dichromat                 "R (>= 2.10), stats"                                                                                                           
digest                    "R (>= 2.4.1)"                                                                                                                 
dimRed                    "R (>= 3.0.0), methods, DRR"                                                                                                   
distory                   "ape (>= 2.3), R (>= 2.6.0)"                                                                                                   
DNAcopy                   NA                                                                                                                             
doMC                      "R (>= 2.14.0), foreach(>= 1.2.0), iterators(>= 1.0.0),\nparallel"                                                             
doParallel                "R (>= 2.14.0), foreach(>= 1.2.0), iterators(>= 1.0.0),\nparallel, utils"                                                      
DoseFinding               "lattice, mvtnorm, R (>= 2.15.0)"                                                                                              
doSNOW                    "R (>= 2.5.0), foreach(>= 1.2.0), iterators(>= 1.0.0), snow(>=\n0.3.0), utils"                                                 
dotCall64                 "R (>= 3.1)"                                                                                                                   
downloader                NA                                                                                                                             
dplyr                     "R (>= 3.1.2)"                                                                                                                 
DRR                       "kernlab, CVST, Matrix"                                                                                                        
DT                        NA                                                                                                                             
dynlm                     "R (>= 2.10.0), zoo"                                                                                                           
e1071                     NA                                                                                                                             
eco                       "R (>= 2.0), MASS, utils"                                                                                                      
ecodist                   "R (>= 3.0.0)"                                                                                                                 
effects                   "R (>= 3.2.0), carData"                                                                                                        
ellipse                   "R (>= 2.0.0),graphics,stats"                                                                                                  
elliptic                  "R (>= 2.5.0)"                                                                                                                 
energy                    NA                                                                                                                             
Epi                       "R (>= 3.0.0), utils"                                                                                                          
epibasix                  "R (>= 2.01)"                                                                                                                  
epicalc                   "R (>= 2.6.2), foreign, survival, MASS, nnet"                                                                                  
epiR                      "R (>= 3.0.0), survival"                                                                                                       
epitools                  "R (>= 2.1.0)"                                                                                                                 
eRm                       "R (>= 3.0.0)"                                                                                                                 
estimability              "stats"                                                                                                                        
etm                       "R (>= 2.14), survival"                                                                                                        
evaluate                  "R (>= 3.0.2)"                                                                                                                 
evd                       NA                                                                                                                             
expm                      "Matrix"                                                                                                                       
FactoMineR                "R (>= 3.0.0)"                                                                                                                 
fail                      NA                                                                                                                             
fAsianOptions             "R (>= 2.15.1), timeDate, timeSeries, fBasics, fOptions"                                                                       
fAssets                   "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fastcluster               "R (>= 3.0.0)"                                                                                                                 
fastICA                   "R (>= 3.0.0)"                                                                                                                 
fastmatch                 NA                                                                                                                             
fBasics                   "R (>= 2.15.1), timeDate, timeSeries"                                                                                          
fBonds                    "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fCopulae                  "R (>= 2.15.1), timeDate, timeSeries, fBasics, fMultivar"                                                                      
fExoticOptions            "R (>= 2.15.1), timeDate, timeSeries, fBasics, fOptions"                                                                       
fExtremes                 "R (>= 2.15.1), timeDate, timeSeries, fBasics, fGarch"                                                                         
fGarch                    "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fields                    "R (>= 3.0), methods, spam, maps"                                                                                              
filehash                  "R (>= 3.0.0), methods"                                                                                                        
fImport                   "R (>= 2.15.1), timeDate, timeSeries"                                                                                          
fitbitScraper             "R (>= 3.0.0)"                                                                                                                 
fitcoach                  "R (>= 3.2.3)"                                                                                                                 
flashClust                "R (>= 2.3.0)"                                                                                                                 
fMultivar                 "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fNonlinear                "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fOptions                  "timeDate, timeSeries, fBasics"                                                                                                
forcats                   "R (>= 3.1)"                                                                                                                   
foreach                   "R (>= 2.5.0)"                                                                                                                 
formatR                   "R (>= 3.0.2)"                                                                                                                 
Formula                   "R (>= 2.0.0), stats"                                                                                                          
fPortfolio                "R (>= 2.15.1), timeDate, timeSeries, fBasics, fAssets"                                                                        
fRegression               "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fTrading                  "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
fUnitRoots                "R (>= 2.15.1), timeDate, timeSeries, fBasics"                                                                                 
futile.logger             "R (>= 3.0.0)"                                                                                                                 
futile.options            "R (>= 2.8.0)"                                                                                                                 
future                    NA                                                                                                                             
g.data                    NA                                                                                                                             
gam                       "stats, splines, foreach"                                                                                                      
gbm                       "R (>= 2.9.0), survival, lattice, splines, parallel"                                                                           
gdata                     "R (>= 2.3.0)"                                                                                                                 
geepack                   NA                                                                                                                             
GenABEL                   "R (>= 2.15.0), methods, MASS, utils, GenABEL.data"                                                                            
GenABEL.data              "R (>= 2.15.0)"                                                                                                                
genetics                  "combinat, gdata, gtools, MASS, mvtnorm"                                                                                       
getopt                    NA                                                                                                                             
ggplot2                   "R (>= 3.1)"                                                                                                                   
ggvis                     "R (>= 3.0)"                                                                                                                   
git2r                     "R (>= 3.1), methods"                                                                                                          
glmnet                    "Matrix (>= 1.0-6), utils, foreach"                                                                                            
globals                   "R (>= 3.1.2)"                                                                                                                 
glue                      "R (>= 3.1)"                                                                                                                   
gmaps                     "maps, grid"                                                                                                                   
gmodels                   "R (>= 1.9.0)"                                                                                                                 
gnm                       "R (>= 2.3.0)"                                                                                                                 
goftest                   "R (>= 3.3)"                                                                                                                   
googleVis                 "R (>= 3.0.2)"                                                                                                                 
gower                     NA                                                                                                                             
gplots                    "R (>= 3.0)"                                                                                                                   
gregmisc                  "gdata, gmodels, gplots, gtools"                                                                                               
gridBase                  "R (>= 2.3.0)"                                                                                                                 
gridExtra                 NA                                                                                                                             
gsl                       "R (>= 2.10.0)"                                                                                                                
gss                       "R (>= 2.14.0), stats"                                                                                                         
gtable                    "R (>= 2.14)"                                                                                                                  
gtools                    "R (>= 2.10)"                                                                                                                  
Guerry                    "R (>= 2.10)"                                                                                                                  
haplo.stats               "R (>= 3.0.0), methods, stats, graphics"                                                                                       
haven                     "R (>= 3.1)"                                                                                                                   
hdf5                      NA                                                                                                                             
hexbin                    "R (>= 2.0.1), methods"                                                                                                        
highr                     "R (>= 3.0.2)"                                                                                                                 
Hmisc                     "lattice, survival (>= 2.40-1), Formula, ggplot2 (>= 2.2)"                                                                     
hms                       NA                                                                                                                             
htmlTable                 NA                                                                                                                             
htmltools                 "R (>= 2.14.1)"                                                                                                                
htmlwidgets               NA                                                                                                                             
httpcode                  NA                                                                                                                             
httpuv                    "R (>= 2.15.1), methods"                                                                                                       
httr                      "R (>= 3.0.0)"                                                                                                                 
hwriter                   "R (>= 2.6.0)"                                                                                                                 
hypergeo                  "R (>= 3.1.0),"                                                                                                                
igraph                    "methods"                                                                                                                      
inline                    "R (>= 2.4.0), methods"                                                                                                        
int64                     "methods"                                                                                                                      
ipred                     "R (>= 2.10)"                                                                                                                  
irlba                     "Matrix"                                                                                                                       
ISOcodes                  "R (>= 2.10.0)"                                                                                                                
ISOweek                   NA                                                                                                                             
iterators                 "R (>= 2.5.0), utils"                                                                                                          
its                       "R (>= 2.0.0), methods, stats, Hmisc"                                                                                          
jsonlite                  "methods"                                                                                                                      
kernlab                   "R (>= 2.10)"                                                                                                                  
knitr                     "R (>= 3.1.0)"                                                                                                                 
labeling                  NA                                                                                                                             
lambda.r                  "R (>= 3.0.0)"                                                                                                                 
latticeExtra              "R (>= 2.10.0), lattice, RColorBrewer"                                                                                         
lava                      "R (>= 3.0)"                                                                                                                   
lavaan                    "R(>= 3.1.0)"                                                                                                                  
lazyeval                  "R (>= 3.1.0)"                                                                                                                 
leaps                     ""                                                                                                                             
LearnBayes                NA                                                                                                                             
lexRankr                  "R (>= 2.10)"                                                                                                                  
lhs                       "R (>= 2.14.2)"                                                                                                                
listenv                   "R (>= 3.1.2)"                                                                                                                 
littler                   NA                                                                                                                             
lme4                      "R (>= 3.0.2), Matrix (>= 1.1.1), methods, stats"                                                                              
lmerTest                  "R (>= 3.0.0), Matrix, stats, methods, lme4 (>= 1.0)"                                                                          
lmtest                    "R (>= 2.10.0), stats, zoo"                                                                                                    
logspline                 NA                                                                                                                             
lpSolve                   NA                                                                                                                             
lsmeans                   "methods, R (>= 3.2)"                                                                                                          
lubridate                 "methods, R (>= 3.0.0)"                                                                                                        
Luminescence              "R (>= 3.3.2), utils, magrittr (>= 1.5)"                                                                                       
magrittr                  NA                                                                                                                             
MALDIquant                "R (>= 3.2.0), methods"                                                                                                        
MALDIquantForeign         "R (>= 3.2.2), methods, MALDIquant (>= 1.16.4)"                                                                                
mapdata                   "R (>= 2.14.0), maps (>= 2.0-7)"                                                                                               
mapproj                   "R (>= 3.0.0), maps (>= 2.3-0)"                                                                                                
maps                      "R (>= 3.0.0)"                                                                                                                 
maptools                  "R (>= 2.10), sp (>= 1.0-11)"                                                                                                  
maptree                   "R (>= 2.14), cluster, rpart"                                                                                                  
markdown                  "R (>= 2.11.1)"                                                                                                                
Matching                  "R (>= 2.6.0), MASS (>= 7.2-1), graphics, grDevices, stats"                                                                    
MatchIt                   "R (>= 2.6)"                                                                                                                   
matrixcalc                "R (>= 2.0.1)"                                                                                                                 
MatrixModels              "R (>= 3.0.1)"                                                                                                                 
matrixStats               "R (>= 2.12.0)"                                                                                                                
maxLik                    "R (>= 2.4.0), miscTools (>= 0.6-8), methods"                                                                                  
mclust                    "R (>= 3.0)"                                                                                                                   
mcmc                      "R (>= 3.0.2)"                                                                                                                 
MCMCpack                  "R (>= 2.10.0), coda (>= 0.11-3), MASS, stats"                                                                                 
medAdherence              NA                                                                                                                             
memoise                   NA                                                                                                                             
mFilter                   "R (>= 2.2.0), stats"                                                                                                          
mi                        "R (>= 3.0.0), methods, Matrix, stats4"                                                                                        
mime                      NA                                                                                                                             
miniUI                    NA                                                                                                                             
minpack.lm                NA                                                                                                                             
minqa                     NA                                                                                                                             
misc3d                    NA                                                                                                                             
miscTools                 "R (>= 2.14.0)"                                                                                                                
mixtools                  "R (>= 3.2.0)"                                                                                                                 
mlbench                   "R (>= 2.10)"                                                                                                                  
mlmRev                    "lme4, R (>= 2.10)"                                                                                                            
mnormt                    "R (>= 2.2.0)"                                                                                                                 
MNP                       "R (>= 2.1), MASS, utils"                                                                                                      
mockery                   NA                                                                                                                             
ModelMetrics              "R (>= 3.2.2)"                                                                                                                 
modeltools                "stats, stats4"                                                                                                                
msm                       NA                                                                                                                             
multcomp                  "stats, graphics, mvtnorm (>= 1.0-3), survival (>= 2.39-4),\nTH.data (>= 1.0-2)"                                               
multicore                 "R (>= 2.14.0)"                                                                                                                
munsell                   NA                                                                                                                             
mvnormtest                "stats"                                                                                                                        
mvtnorm                   "R(>= 1.9.0)"                                                                                                                  
natserv                   "R(>= 3.2.1)"                                                                                                                  
ncdf4                     NA                                                                                                                             
nleqslv                   NA                                                                                                                             
nloptr                    NA                                                                                                                             
NLP                       "R (>= 3.2.0)"                                                                                                                 
NMF                       "R (>= 3.0.0), methods, utils, pkgmaker (>= 0.20), registry,\nrngtools (>= 1.2.3), cluster"                                    
nnls                      NA                                                                                                                             
nortest                   NA                                                                                                                             
numDeriv                  "R (>= 2.11.1)"                                                                                                                
nws                       "R (>= 2.5), methods, utils"                                                                                                   
openssl                   NA                                                                                                                             
optparse                  "R (>= 2.9.0)"                                                                                                                 
pbapply                   "R (>= 3.2.0)"                                                                                                                 
pbdZMQ                    "R (>= 3.2.0)"                                                                                                                 
pbivnorm                  NA                                                                                                                             
pbkrtest                  "R (>= 3.2.3), lme4 (>= 1.1.10)"                                                                                               
permute                   "R (>= 2.14.0)"                                                                                                                
phangorn                  "R (>= 3.2.0), ape (>= 5.0)"                                                                                                   
pheatmap                  "R (>= 2.0)"                                                                                                                   
phylobase                 NA                                                                                                                             
phytools                  "R (>= 3.2.0), ape (>= 4.0), maps"                                                                                             
pillar                    NA                                                                                                                             
pkgconfig                 NA                                                                                                                             
pkgKitten                 NA                                                                                                                             
pkgmaker                  "R (>= 3.0.0), stats, registry"                                                                                                
plogr                     NA                                                                                                                             
plotly                    "R (>= 3.2.0), ggplot2 (>= 2.2.1)"                                                                                             
plotrix                   NA                                                                                                                             
plyr                      "R (>= 3.1.0)"                                                                                                                 
png                       "R (>= 2.9.0)"                                                                                                                 
polspline                 NA                                                                                                                             
polyclip                  "R (>= 3.0.0)"                                                                                                                 
polyCub                   "R (>= 2.15.0), methods, sp (>= 1.0-11)"                                                                                       
praise                    NA                                                                                                                             
prettyunits               NA                                                                                                                             
princurve                 NA                                                                                                                             
prodlim                   "R (>= 2.9.0)"                                                                                                                 
profileModel              "R (>= 2.6.0)"                                                                                                                 
progress                  NA                                                                                                                             
proto                     NA                                                                                                                             
PSCBS                     "R (>= 3.2.0),\nutils"                                                                                                         
pscl                      NA                                                                                                                             
psy                       NA                                                                                                                             
psych                     "R (>= 2.10)"                                                                                                                  
purrr                     "R (>= 3.1)"                                                                                                                   
pwt                       "R (>= 2.10.0)"                                                                                                                
pwt8                      "R (>= 2.10.0)"                                                                                                                
pwt9                      "R (>= 3.0.0)"                                                                                                                 
qqman                     "R (>= 3.0.0),"                                                                                                                
qtl                       "R (>= 2.14.0)"                                                                                                                
quadprog                  "R (>= 2.15.0)"                                                                                                                
quantmod                  "R (>= 3.2.0), xts(>= 0.9-0), zoo, TTR(>= 0.2), methods"                                                                       
quantreg                  "R (>= 2.6), stats, SparseM"                                                                                                   
qvcalc                    NA                                                                                                                             
R.cache                   "R (>= 2.5.0)"                                                                                                                 
R.methodsS3               "R (>= 2.13.0)"                                                                                                                
R.oo                      "R (>= 2.13.0), R.methodsS3 (>= 1.7.1)"                                                                                        
R.utils                   "R (>= 2.14.0), R.oo (>= 1.21.0)"                                                                                              
R6                        "R (>= 3.0)"                                                                                                                   
RandomFields              "R (>= 3.3), sp, RandomFieldsUtils (>= 0.3.25)"                                                                                
RandomFieldsUtils         "R (>= 3.3)"                                                                                                                   
randomForest              "R (>= 2.5.0), stats"                                                                                                          
RaschSampler              "R (>= 3.0.0)"                                                                                                                 
raster                    "methods, sp (>= 1.2-0), R (>= 3.0.0)"                                                                                         
Rcmdr                     "R (>= 3.2.0), grDevices, graphics, methods, stats, utils,\nsplines, RcmdrMisc (>= 1.0-6), car (>= 2.1-3), effects (>=\n3.0-1)"
RcmdrMisc                 "R (>= 3.0.0), utils, car, sandwich"                                                                                           
RColorBrewer              "R (>= 2.0.0)"                                                                                                                 
Rcpp                      "R (>= 3.0.0)"                                                                                                                 
RcppArmadillo             NA                                                                                                                             
RcppEigen                 "R (>= 2.15.1)"                                                                                                                
RcppGSL                   NA                                                                                                                             
RcppRoll                  "R (>= 2.15.1)"                                                                                                                
RCurl                     "R (>= 3.0.0), methods, bitops"                                                                                                
readBrukerFlexData        "R (>= 3.3.0)"                                                                                                                 
readMzXmlData             "R (>= 2.15.0)"                                                                                                                
readr                     "R (>= 3.0.2)"                                                                                                                 
readstata13               NA                                                                                                                             
readxl                    NA                                                                                                                             
recipes                   "R (>= 3.2.3), dplyr"                                                                                                          
registry                  "R (>= 2.6.0)"                                                                                                                 
relimp                    "R (>= 2.0.0)"                                                                                                                 
rematch                   NA                                                                                                                             
rentrez                   "R (>= 2.6.0)"                                                                                                                 
repr                      "R (>= 3.0.1)"                                                                                                                 
reshape                   "R (>= 2.6.1)"                                                                                                                 
reshape2                  NA                                                                                                                             
rgenoud                   "R (>= 2.15), utils"                                                                                                           
rggobi                    "R (>= 2.5.1)"                                                                                                                 
rgl                       "R (>= 3.2.0)"                                                                                                                 
Rglpk                     "slam (>= 0.1-9)"                                                                                                              
rglwidget                 NA                                                                                                                             
RGtk2                     "R (>= 3.4.0)"                                                                                                                 
rhandsontable             NA                                                                                                                             
RInside                   "R (>= 2.10.0)"                                                                                                                
ritis                     NA                                                                                                                             
rjags                     "R (>= 2.14.0), coda (>= 0.13)"                                                                                                
rJava                     "R (>= 2.5.0), methods"                                                                                                        
rjson                     "R (>= 3.1.0)"                                                                                                                 
RJSONIO                   NA                                                                                                                             
rlang                     "R (>= 3.1.0)"                                                                                                                 
rlist                     "R (>= 2.15)"                                                                                                                  
RLumShiny                 "R (>= 3.3.2)"                                                                                                                 
Rmpi                      "R (>= 2.15.1)"                                                                                                                
rms                       "Hmisc (>= 4.1-0), survival (>= 2.40-1), lattice, ggplot2 (>=\n2.2), SparseM"                                                  
RMySQL                    "R (>= 2.8.0), DBI (>= 0.4)"                                                                                                   
rncl                      "R (>= 3.1.1)"                                                                                                                 
rneos                     "R (>= 2.10.0), methods, RCurl, XML, stats"                                                                                    
RNetCDF                   "R (>= 2.5.0)"                                                                                                                 
RNeXML                    "R (>= 3.0.0), ape (>= 3.1), methods (>= 3.0.0)"                                                                               
rngtools                  "R (>= 3.0.0), methods, pkgmaker (>= 0.20)"                                                                                    
Rniftilib                 "R (>= 2.15.1)"                                                                                                                
robustbase                "R (>= 3.0.2)"                                                                                                                 
ROCR                      "gplots, methods"                                                                                                              
RODBC                     "R (>= 3.0.0)"                                                                                                                 
rotl                      "R (>= 3.1.1)"                                                                                                                 
RPostgreSQL               "R (>= 2.9.0), methods, DBI (>= 0.1-4)"                                                                                        
rprojroot                 "R (>= 3.0.0)"                                                                                                                 
RProtoBuf                 "R (>= 3.0.0), methods"                                                                                                        
RQuantLib                 "R (>= 2.10.0)"                                                                                                                
rredlist                  NA                                                                                                                             
RSclient                  "R (>= 2.7.0)"                                                                                                                 
rsdmx                     "R (>= 2.15)"                                                                                                                  
Rserve                    "R (>= 1.5.0)"                                                                                                                 
Rsolnp                    "R (>= 2.10.0)"                                                                                                                
rsprng                    "R (>= 1.2.0)"                                                                                                                 
RSQLite                   "R (>= 3.1.0)"                                                                                                                 
rstudioapi                NA                                                                                                                             
Rsymphony                 "R (>= 2.6.0)"                                                                                                                 
RUnit                     "R (>= 2.5.0), utils (>= 2.5.0), methods (>= 2.5.0), graphics\n(>= 2.5.0)"                                                     
sandwich                  "R (>= 2.10.0)"                                                                                                                
scales                    "R (>= 2.13)"                                                                                                                  
scatterD3                 NA                                                                                                                             
scatterplot3d             "R (>= 2.7.0)"                                                                                                                 
segmented                 NA                                                                                                                             
sem                       "R (>= 2.14.0), stats"                                                                                                         
semTools                  "R(>= 3.0), methods, lavaan(>= 0.5-22), utils, stats, graphics"                                                                
sendmailR                 "R (>= 3.0.0)"                                                                                                                 
seqinr                    "R (>= 2.10.0)"                                                                                                                
seroincidence             NA                                                                                                                             
sfsmisc                   "R (>= 3.0.1)"                                                                                                                 
shape                     "R (>= 2.01)"                                                                                                                  
shiny                     "R (>= 3.0.2), methods"                                                                                                        
shinyBS                   NA                                                                                                                             
shinydashboard            "R (>= 3.0)"                                                                                                                   
shinyjs                   "R (>= 3.1.0)"                                                                                                                 
slam                      "R (>= 3.4.0)"                                                                                                                 
sm                        "R (>= 2.14.0)"                                                                                                                
sn                        "R (>= 2.15.3), methods, stats4"                                                                                               
snow                      "R (>= 2.13.1), utils"                                                                                                         
SnowballC                 NA                                                                                                                             
solrium                   NA                                                                                                                             
sourcetools               "R (>= 3.0.2)"                                                                                                                 
sp                        "R (>= 3.0.0), methods"                                                                                                        
spam                      "R (>= 3.1), dotCall64, grid, methods"                                                                                         
SparseM                   "R (>= 2.15), methods"                                                                                                         
spatstat                  "R (>= 3.3.0), spatstat.data (>= 1.1-0), stats, graphics,\ngrDevices, utils, methods, nlme, rpart"                             
spatstat.data             "R (>= 3.3.0)"                                                                                                                 
spatstat.utils            "R (>= 3.3.0), stats, graphics, grDevices, utils, methods"                                                                     
spc                       "R (>= 1.8.0)"                                                                                                                 
spdep                     "R (>= 3.0.0), methods, sp (>= 1.0), Matrix (>= 1.0.12)"                                                                       
stabledist                "R (>= 3.1.0)"                                                                                                                 
statmod                   "R (>= 1.6.1)"                                                                                                                 
stringi                   "R (>= 2.14)"                                                                                                                  
stringr                   "R (>= 3.1)"                                                                                                                   
strucchange               "R (>= 2.10.0), zoo, sandwich"                                                                                                 
surveillance              "R (>= 3.2.0), methods, grDevices, graphics, stats, utils, sp\n(>= 1.0-15), xtable (>= 1.7-0)"                                 
survey                    "R (>= 2.16.0), grid, methods, Matrix, survival"                                                                               
taxize                    "R(>= 3.2.1)"                                                                                                                  
tcltk2                    "R (>= 2.8.0), tcltk"                                                                                                          
TeachingDemos             NA                                                                                                                             
tensor                    NA                                                                                                                             
testit                    NA                                                                                                                             
testthat                  "R (>= 3.1)"                                                                                                                   
tgp                       "R (>= 2.14.0)"                                                                                                                
TH.data                   "R (>= 2.10.0), survival, MASS"                                                                                                
tibble                    "R (>= 3.1.0)"                                                                                                                 
tidyr                     "R (>= 3.2)"                                                                                                                   
tidyselect                "R (>= 3.1)"                                                                                                                   
tikzDevice                "R (>= 2.14.0)"                                                                                                                
timeDate                  "R (>= 2.15.1), graphics, utils, stats, methods"                                                                               
timeSeries                "R (>= 2.10), graphics, grDevices, stats, methods, utils,\ntimeDate (>= 2150.95)"                                              
tkrplot                   "R (>= 2.13), grDevices, tcltk"                                                                                                
tm                        "R (>= 3.2.0), NLP (>= 0.1-6.2)"                                                                                               
treescape                 "R (>= 3.1.2), ape, ade4"                                                                                                      
treespace                 "R (>= 3.1.2), ape, ade4"                                                                                                      
triebeard                 NA                                                                                                                             
truncdist                 "R (>= 2.0.1), stats4,evd"                                                                                                     
truncnorm                 "R (>= 2.15.0)"                                                                                                                
tseries                   "R (>= 2.10.0)"                                                                                                                
TTR                       NA                                                                                                                             
urca                      "R (>= 2.0.0), methods"                                                                                                        
urltools                  "R (>= 2.10)"                                                                                                                  
utf8                      "R (>= 2.10)"                                                                                                                  
uuid                      "R (>= 2.9.0)"                                                                                                                 
V8                        NA                                                                                                                             
vcd                       "R (>= 2.4.0), grid"                                                                                                           
vcdExtra                  "R (>= 2.10), vcd, gnm (>= 1.0-3), grid"                                                                                       
vegan                     "permute (>= 0.9-0), lattice, R (>= 3.0.0)"                                                                                    
VGAM                      "R (>= 3.4.0), methods, stats, stats4, splines"                                                                                
vioplot                   "sm"                                                                                                                           
viridis                   "R (>= 2.10), viridisLite (>= 0.2.0)"                                                                                          
viridisLite               "R (>= 2.10)"                                                                                                                  
WDI                       "rjson"                                                                                                                        
webmockr                  NA                                                                                                                             
whisker                   NA                                                                                                                             
WikidataR                 NA                                                                                                                             
WikipediR                 NA                                                                                                                             
wikitaxa                  "R(>= 3.2.1)"                                                                                                                  
withr                     "R (>= 3.0.2)"                                                                                                                 
wordcloud                 "methods, RColorBrewer"                                                                                                        
worrms                    NA                                                                                                                             
XML                       "R (>= 2.13.0), methods, utils"                                                                                                
xml2                      "R (>= 3.1.0)"                                                                                                                 
XMLRPC                    NA                                                                                                                             
xtable                    "R (>= 2.10.0)"                                                                                                                
xts                       "zoo (>= 1.7-12)"                                                                                                              
yaml                      NA                                                                                                                             
Zelig                     "survival"                                                                                                                     
zoo                       "R (>= 2.10.0), stats"                                                                                                         
base                      NA                                                                                                                             
boot                      "R (>= 3.0.0), graphics, stats"                                                                                                
class                     "R (>= 3.0.0), stats, utils"                                                                                                   
cluster                   "R (>= 3.0.1)"                                                                                                                 
codetools                 "R (>= 2.1)"                                                                                                                   
compiler                  NA                                                                                                                             
datasets                  NA                                                                                                                             
foreign                   "R (>= 3.0.0)"                                                                                                                 
graphics                  NA                                                                                                                             
grDevices                 NA                                                                                                                             
grid                      NA                                                                                                                             
KernSmooth                "R (>= 2.5.0), stats"                                                                                                          
lattice                   "R (>= 3.0.0)"                                                                                                                 
MASS                      "R (>= 3.1.0), grDevices, graphics, stats, utils"                                                                              
Matrix                    "R (>= 3.0.1)"                                                                                                                 
methods                   NA                                                                                                                             
mgcv                      "R (>= 2.14.0), nlme (>= 3.1-64)"                                                                                              
nlme                      "R (>= 3.0.2)"                                                                                                                 
nnet                      "R (>= 2.14.0), stats, utils"                                                                                                  
parallel                  NA                                                                                                                             
rpart                     "R (>= 2.15.0), graphics, stats, grDevices"                                                                                    
spatial                   "R (>= 3.0.0), graphics, stats, utils"                                                                                         
splines                   NA                                                                                                                             
stats                     NA                                                                                                                             
stats4                    NA                                                                                                                             
survival                  "R (>= 2.13.0)"                                                                                                                
tcltk                     NA                                                                                                                             
tools                     NA                                                                                                                             
utils                     NA                                                                                                                             
                          Imports                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
abind                     "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
acepack                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
adabag                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
alabama                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
alluvial                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
askpass                   "sys (>= 2.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
assertthat                "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
backports                 "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
base64enc                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bgmfiles                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
BH                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bibliometrix              "stats,\ndplyr,\nDT,\nfactoextra,\nFactoMineR,\nggraph,\nggplot2,\nggrepel,\nigraph,\nMatrix,\nnetworkD3,\nreshape2,\nRColorBrewer,\nRISmed,\nrscopus,\nshiny,\nshinycssloaders,\nshinythemes,\nSnowballC,\nstringdist,\nstringr"                                                                                                                                                                                                                                                     
bibtex                    "stringr, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
BiocGenerics              "methods, utils, graphics, stats, parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                           
BiocInstaller             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bit                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bit64                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bitops                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
blob                      "methods, prettyunits, rlang, vctrs (>= 0.2.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
bookdown                  "htmltools (>= 0.3.6), knitr (>= 1.22), rmarkdown (>= 1.12),\nxfun (>= 0.6), tinytex (>= 0.12)"                                                                                                                                                                                                                                                                                                                                                                                       
brew                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
broom                     "backports, dplyr, generics (>= 0.0.2), methods, nlme, purrr,\nreshape2, stringr, tibble, tidyr"                                                                                                                                                                                                                                                                                                                                                                                      
callr                     "processx (>= 3.4.0), R6, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
car                       "abind, MASS, mgcv, nnet, pbkrtest (>= 0.4-4), quantreg,\ngrDevices, utils, stats, graphics, maptools, rio, lme4, nlme"                                                                                                                                                                                                                                                                                                                                                               
carData                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
caTools                   "bitops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
cellranger                "rematch, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
checkmate                 "backports (>= 1.1.0), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
classInt                  "grDevices, stats, graphics, e1071, class, KernSmooth"                                                                                                                                                                                                                                                                                                                                                                                                                                
cli                       "assertthat, crayon (>= 1.3.4), methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                       
clipr                     "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
colorspace                "graphics, grDevices, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
corrplot                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
cowplot                   "grid (>= 3.0.0),\ngtable (>= 0.1.2),\nplyr (>= 1.8.2),\ngrDevices,\nmethods,\nutils"                                                                                                                                                                                                                                                                                                                                                                                                 
crayon                    "grDevices, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
crosstalk                 "htmltools (>= 0.3.5), jsonlite, lazyeval, R6, shiny (>= 0.11),\nggplot2"                                                                                                                                                                                                                                                                                                                                                                                                             
crul                      "curl (>= 3.3), R6 (>= 2.2.0), urltools (>= 1.6.0), httpcode\n(>= 0.2.0), jsonlite, mime"                                                                                                                                                                                                                                                                                                                                                                                             
csvread                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Cubist                    "reshape2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
curl                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
data.table                "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
data.tree                 "R6, stringr, methods, DiagrammeR (>= 1.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                         
DBI                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
dendextend                "utils, stats, datasets, magrittr (>= 1.0.1), ggplot2, viridis"                                                                                                                                                                                                                                                                                                                                                                                                                       
DEoptim                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
DiagrammeR                "dplyr (>= 0.7.4), downloader (>= 0.4), glue (>= 1.2.0),\nhtmltools (>= 0.3.6), htmlwidgets (>= 1.0), igraph (>= 1.1.2),\ninfluenceR (>= 0.1.0), magrittr (>= 1.5), purrr (>= 0.2.4),\nRColorBrewer (>= 1.1-2), readr (>= 1.1.1), rlang (>= 0.2.0),\nrstudioapi (>= 0.7), rgexf (>= 0.15.3), scales (>= 0.5.0),\nstringr (>= 1.3.0), tibble (>= 1.4.2), tidyr (>= 0.8.0),\nviridis (>= 0.5.0), visNetwork (>= 2.0.3)"                                                                 
digest                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
downloader                "utils, digest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
dplyr                     "assertthat (>= 0.2.0), glue (>= 1.3.0), magrittr (>= 1.5),\nmethods, pkgconfig, R6, Rcpp (>= 1.0.1), rlang (>= 0.4.0),\ntibble (>= 2.0.0), tidyselect (>= 0.2.5), utils"                                                                                                                                                                                                                                                                                                             
DT                        "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), jsonlite (>=\n0.9.16), magrittr, crosstalk, promises"                                                                                                                                                                                                                                                                                                                                                                                    
dygraphs                  "magrittr, htmlwidgets (>= 0.6), htmltools (>= 0.3.5), zoo (>=\n1.7-10), xts (>= 0.9-7)"                                                                                                                                                                                                                                                                                                                                                                                              
e1071                     "graphics, grDevices, class, stats, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                   
ECOSolveR                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
eha                       "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
ellipsis                  "rlang (>= 0.3.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
evaluate                  "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
expm                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
extrafont                 "extrafontdb, grDevices, utils, Rttf2pt1"                                                                                                                                                                                                                                                                                                                                                                                                                                             
extrafontdb               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
factoextra                "abind, cluster, dendextend, FactoMineR, ggpubr(>= 0.1.5),\ngrid, stats, reshape2, ggrepel, tidyr"                                                                                                                                                                                                                                                                                                                                                                                    
FactoMineR                "car,cluster,ellipse,flashClust,graphics,grDevices,lattice,leaps,MASS,scatterplot3d,stats,utils"                                                                                                                                                                                                                                                                                                                                                                                      
fansi                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
farver                    "Rcpp (>= 0.12.15)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
fastmatch                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
FinCal                    "ggplot2, reshape2, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fitdistrplus              "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
flexdashboard             "tools, jsonlite, htmltools, knitr (>= 1.13), htmlwidgets (>=\n0.6), rmarkdown (>= 1.0), shiny (>= 0.13)"                                                                                                                                                                                                                                                                                                                                                                             
forcats                   "ellipsis, magrittr, rlang, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
foreign                   "methods, utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
Formula                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fs                        "methods, Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
gbRd                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gdalUtils                 "sp, foreach, R.utils, raster, rgdal"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
gdtools                   "Rcpp (>= 0.12.12), withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
genalg                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
generics                  "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
geojsonR                  "Rcpp (>= 0.12.9), R6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
geosphere                 "sp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
gepaf                     "bitops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
ggforce                   "Rcpp (>= 0.12.2), grid, scales, MASS, tweenr (>= 0.1.5),\ngtable, rlang, polyclip, stats, grDevices, tidyselect, withr,\nutils"                                                                                                                                                                                                                                                                                                                                                      
ggmap                     "RgoogleMaps, png, plyr, rjson, jpeg, digest, scales, dplyr,\nbitops, grid, glue, httr, stringr, purrr, magrittr, tibble,\ntidyr"                                                                                                                                                                                                                                                                                                                                                     
ggplot2                   "digest, grDevices, grid, gtable (>= 0.1.1), lazyeval, MASS,\nmgcv, reshape2, rlang (>= 0.3.0), scales (>= 0.5.0), stats,\ntibble, viridisLite, withr (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                     
ggpubr                    "ggrepel, grid, ggsci, stats, utils, tidyr, purrr, dplyr (>=\n0.7.1), cowplot, ggsignif, scales, gridExtra, glue, polynom,\nrlang"                                                                                                                                                                                                                                                                                                                                                    
ggraph                    "Rcpp (>= 0.12.2), dplyr, plyr, ggforce, grid, igraph (>=\n1.0.0), scales, MASS, digest, gtable, ggrepel, utils, stats,\nviridis"                                                                                                                                                                                                                                                                                                                                                     
ggrepel                   "grid, Rcpp, scales (>= 0.3.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
ggsci                     "grDevices, scales, ggplot2 (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                               
ggsignif                  "ggplot2 (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
gistr                     "jsonlite (>= 1.4), httr (>= 1.2.0), magrittr, assertthat,\nknitr, rmarkdown, dplyr"                                                                                                                                                                                                                                                                                                                                                                                                  
globalOptTests            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
glue                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
graph                     "stats, stats4, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
gridExtra                 "gtable, grid, grDevices, graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                            
gtable                    "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
gWidgets                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gWidgetsRGtk2             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
haven                     "forcats (>= 0.2.0), hms, Rcpp (>= 0.11.4), readr (>= 0.1.0),\ntibble"                                                                                                                                                                                                                                                                                                                                                                                                                
highr                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Hmisc                     "methods, latticeExtra, cluster, rpart, nnet, acepack, foreign,\ngtable, grid, gridExtra, data.table, htmlTable (>= 1.11.0),\nviridis, htmltools, base64enc"                                                                                                                                                                                                                                                                                                                          
hms                       "methods, pkgconfig, rlang, vctrs (>= 0.2.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                         
htmlTable                 "stringr, knitr (>= 1.6), magrittr (>= 1.5), methods,\ncheckmate, htmlwidgets, htmltools, rstudioapi (>= 0.6)"                                                                                                                                                                                                                                                                                                                                                                        
htmltools                 "utils, digest, Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
htmlwidgets               "grDevices, htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml"                                                                                                                                                                                                                                                                                                                                                                                                                           
httpcode                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
httpuv                    "Rcpp (>= 0.11.0), utils, R6, promises, later (>= 0.8.0)"                                                                                                                                                                                                                                                                                                                                                                                                                             
httr                      "curl (>= 3.0.0), jsonlite, mime, openssl (>= 0.8), R6"                                                                                                                                                                                                                                                                                                                                                                                                                               
hunspell                  "Rcpp, digest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
igraph                    "graphics, grDevices, magrittr, Matrix, pkgconfig (>= 2.0.0),\nstats, utils"                                                                                                                                                                                                                                                                                                                                                                                                          
influenceR                "igraph (>= 1.0.1), Matrix (>= 1.1-4), methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                
isoband                   "Rcpp, grid, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
ISOcodes                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
janeaustenr               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
jpeg                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
jsonlite                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
kernlab                   "methods, stats, grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
kknn                      "igraph (>= 1.0), Matrix, stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                            
knitr                     "evaluate (>= 0.10), highr, markdown, stringr (>= 0.6), yaml\n(>= 2.1.19), methods, xfun, tools"                                                                                                                                                                                                                                                                                                                                                                                      
labeling                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
labelled                  "haven (>= 2.1.0), dplyr, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
later                     "Rcpp (>= 0.12.9), rlang"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
latticeExtra              "grid, stats, utils, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
lazyeval                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
leaflet                   "base64enc, crosstalk, htmlwidgets, htmltools, magrittr,\nmarkdown, methods, png, RColorBrewer, raster, scales (>=\n1.0.0), sp, stats, viridis (>= 0.5.1)"                                                                                                                                                                                                                                                                                                                            
leaflet.extras            "htmlwidgets, htmltools, stringr, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                           
leafpop                   "base64enc, brew, gdalUtils, htmlwidgets, Rcpp (>= 1.0.0),\nsvglite, uuid"                                                                                                                                                                                                                                                                                                                                                                                                            
lme4                      "graphics, grid, splines, utils, parallel, MASS, lattice, boot,\nnlme (>= 3.1-123), minqa (>= 1.1.15), nloptr (>= 1.0.4)"                                                                                                                                                                                                                                                                                                                                                             
lmtest                    "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
lpSolve                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lpSolveAPI                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lsei                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lubridate                 "stringr, Rcpp (>= 0.12.13),"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
magrittr                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
maps                      "graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
maptools                  "foreign (>= 0.8), methods, grid, lattice, stats, utils,\ngrDevices"                                                                                                                                                                                                                                                                                                                                                                                                                  
markdown                  "utils, xfun, mime (>= 0.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
MatrixModels              "stats, methods, Matrix (>= 1.1-5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
matrixStats               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mc2d                      "stats, grDevices, graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
mclust                    "stats, utils, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
mco                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mda                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
memoise                   "digest (>= 0.6.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
mime                      "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
minqa                     "Rcpp (>= 0.9.10)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mlogit                    "statmod, MASS, Rdpack"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
modelr                    "broom, dplyr, magrittr, purrr (>= 0.2.2), rlang (>= 0.2.0),\ntibble, tidyr (>= 0.8.0)"                                                                                                                                                                                                                                                                                                                                                                                               
modeltools                "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
munsell                   "colorspace, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
nabor                     "Rcpp (>= 0.11.2), methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
network                   "tibble, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
networkD3                 "htmlwidgets (>= 0.3.2), igraph, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                            
nloptr                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
NLP                       "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
npsurv                    "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
opencage                  "httr, jsonlite, dplyr, memoise"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
openssl                   "askpass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
openxlsx                  "methods, Rcpp, grDevices, stats, utils, zip"                                                                                                                                                                                                                                                                                                                                                                                                                                         
optimx                    "numDeriv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
osmar                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
packrat                   "tools, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
party                     "survival (>= 2.37-7), coin (>= 1.1-0), zoo, sandwich (>=\n1.1-1)"                                                                                                                                                                                                                                                                                                                                                                                                                    
pbkrtest                  "Matrix (>= 1.2.3), parallel, MASS, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                          
PerformanceAnalytics      "methods, quadprog, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
pillar                    "cli, crayon (>= 1.3.4), fansi, rlang (>= 0.3.0), utf8 (>=\n1.1.0), vctrs"                                                                                                                                                                                                                                                                                                                                                                                                            
pkgconfig                 "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
plogr                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
plotly                    "tools, scales, httr, jsonlite (>= 1.6), magrittr, digest,\nviridisLite, base64enc, htmltools (>= 0.3.6), htmlwidgets (>=\n1.3), tidyr, hexbin, RColorBrewer, dplyr, tibble, lazyeval (>=\n0.2.0), rlang, crosstalk, purrr, data.table, promises"                                                                                                                                                                                                                                     
pls                       "grDevices, graphics, methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
plyr                      "Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
png                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
polyclip                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
polynom                   "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
prettyunits               "magrittr, assertthat, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
processx                  "ps (>= 1.2.0), R6, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
progress                  "hms, prettyunits, R6, crayon"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
promises                  "R6, Rcpp, later, rlang, stats, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                             
pryr                      "stringr, codetools, methods, Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
ps                        "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
purrr                     "magrittr (>= 1.5), rlang (>= 0.3.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
qcc                       "MASS, utils, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
qmap                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
qualityTools              ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
quantmod                  "curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
quantreg                  "methods, graphics, Matrix, MatrixModels"                                                                                                                                                                                                                                                                                                                                                                                                                                             
questionr                 "shiny (>= 1.0.5), miniUI, rstudioapi, highr, classInt,\nhtmltools, graphics, stats, utils, labelled (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                      
R.methodsS3               "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
R.oo                      "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
R.utils                   "methods, utils, tools, R.methodsS3 (>= 1.7.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
R6                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
raster                    "Rcpp, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
rbgm                      "dplyr, geosphere, tibble (>= 1.1), stringr, readr, rlang"                                                                                                                                                                                                                                                                                                                                                                                                                            
rbokeh                    "htmlwidgets (>= 0.5), maps, methods, jsonlite, digest, hexbin,\nlazyeval, pryr, magrittr, ggplot2, scales, gistr"                                                                                                                                                                                                                                                                                                                                                                    
rCarto                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RColorBrewer              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rcpp                      "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
RcppArmadillo             "Rcpp (>= 0.11.0), stats, utils, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                             
RcppEigen                 "Matrix (>= 1.1-0), Rcpp (>= 0.11.0), stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                   
RcppParallel              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RCurl                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rdpack                    "tools, utils, grDevices, bibtex (>= 0.4.0), gbRd"                                                                                                                                                                                                                                                                                                                                                                                                                                    
readr                     "Rcpp (>= 0.12.0.5), tibble, hms (>= 0.4.1), R6, clipr, crayon,\nmethods"                                                                                                                                                                                                                                                                                                                                                                                                             
readxl                    "cellranger, Rcpp (>= 0.12.18), tibble (>= 1.3.1), utils"                                                                                                                                                                                                                                                                                                                                                                                                                             
rematch                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
reprex                    "callr (>= 2.0.0), clipr (>= 0.4.0), fs, rlang, rmarkdown,\nutils, whisker, withr"                                                                                                                                                                                                                                                                                                                                                                                                    
reshape2                  "plyr (>= 1.8.1), Rcpp, stringr"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
reticulate                "utils, graphics, jsonlite, Rcpp (>= 0.12.7), Matrix"                                                                                                                                                                                                                                                                                                                                                                                                                                 
rgdal                     "grDevices, graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
rgeos                     "utils, stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
rgexf                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RgoogleMaps               "graphics, stats, utils, grDevices, methods, png"                                                                                                                                                                                                                                                                                                                                                                                                                                     
RGraphics                 "lattice, ggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rgraphviz                 "stats4, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
rio                       "tools, stats, utils, foreign, haven (>= 1.1.0), curl (>= 0.6),\ndata.table (>= 1.9.8), readxl (>= 0.1.1), openxlsx, tibble"                                                                                                                                                                                                                                                                                                                                                          
RISmed                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RJSONIO                   "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
rlang                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rmarkdown                 "tools, utils, knitr (>= 1.22), yaml (>= 2.1.19), htmltools (>=\n0.3.5), evaluate (>= 0.13), base64enc, jsonlite, mime, tinytex\n(>= 0.11), xfun, methods, stringr (>= 1.2.0)"                                                                                                                                                                                                                                                                                                        
rmdformats                "knitr, rmarkdown, bookdown, htmltools, questionr"                                                                                                                                                                                                                                                                                                                                                                                                                                    
rminer                    "methods, plotrix, lattice, nnet, kknn, pls, MASS, mda, rpart,\nrandomForest, adabag, party, Cubist, kernlab, e1071, glmnet,\nxgboost"                                                                                                                                                                                                                                                                                                                                                
ROI                       "methods, registry (>= 0.5), slam, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                             
ROI.models.globalOptTests "ROI (>= 0.3-0), globalOptTests"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
ROI.models.miplib         "R.utils, Rglpk, ROI (>= 0.2-0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
ROI.models.netlib         "ROI (>= 0.2-1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
ROI.plugin.alabama        "methods, stats, utils, ROI (>= 0.3-0), alabama (>= 1.0.1)"                                                                                                                                                                                                                                                                                                                                                                                                                           
ROI.plugin.deoptim        "methods, stats, utils, ROI (>= 0.3-2), DEoptim, DEoptimR (>=\n1.0-4)"                                                                                                                                                                                                                                                                                                                                                                                                                
ROI.plugin.ecos           "methods, slam, Matrix, ROI (>= 0.3-0), ECOSolveR (>= 0.3-1)"                                                                                                                                                                                                                                                                                                                                                                                                                         
ROI.plugin.glpk           "methods, ROI (>= 0.3-0), Rglpk (>= 0.6-2)"                                                                                                                                                                                                                                                                                                                                                                                                                                           
ROI.plugin.ipop           "methods, ROI (>= 0.2-5), kernlab, slam"                                                                                                                                                                                                                                                                                                                                                                                                                                              
ROI.plugin.lpsolve        "stats, methods, utils, ROI (>= 0.3-0), lpSolveAPI (>=\n5.5.2.0-1)"                                                                                                                                                                                                                                                                                                                                                                                                                   
ROI.plugin.msbinlp        "stats, methods, utils, slam, ROI (>= 0.3-0)"                                                                                                                                                                                                                                                                                                                                                                                                                                         
ROI.plugin.neos           "stats, methods, utils, ROI (>= 0.3-0), xmlrpc2, xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                
ROI.plugin.optimx         "methods, stats, utils, ROI (>= 0.3-2), optimx"                                                                                                                                                                                                                                                                                                                                                                                                                                       
Rook                      "utils, tools, methods, brew"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
rprojroot                 "backports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
RQDA                      "RGtk2 (>= 2.20), igraph, gWidgets (>= 0.0-31), methods"                                                                                                                                                                                                                                                                                                                                                                                                                              
rriskDistributions        "stats, graphics, mc2d, eha, msm, tcltk, tkrplot"                                                                                                                                                                                                                                                                                                                                                                                                                                     
rsconnect                 "curl, jsonlite, openssl, packrat (>= 0.4.8-1), rstudioapi (>=\n0.5), yaml (>= 2.1.5)"                                                                                                                                                                                                                                                                                                                                                                                                
rscopus                   "httr, utils, stats, plyr, tidyr, dplyr, tools"                                                                                                                                                                                                                                                                                                                                                                                                                                       
RSpectra                  "Matrix (>= 1.1-0), Rcpp (>= 0.11.5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
RSQLite                   "bit64, blob (>= 1.2.0), DBI (>= 1.0.0), memoise, methods,\npkgconfig, Rcpp (>= 0.12.7)"                                                                                                                                                                                                                                                                                                                                                                                              
rstudioapi                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RTriangle                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rttf2pt1                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rtweet                    "httr (>= 1.3.0), jsonlite (>= 0.9.22), magrittr (>= 1.5.0),\ntibble (>= 1.3.4), utils, progress, Rcpp, httpuv"                                                                                                                                                                                                                                                                                                                                                                       
rvest                     "httr (>= 0.5), magrittr, selectr"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sandwich                  "stats, utils, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
satellite                 "plyr, Rcpp (>= 0.10.3), tools, stats4"                                                                                                                                                                                                                                                                                                                                                                                                                                               
scales                    "labeling, munsell (>= 0.5), R6, RColorBrewer, Rcpp,\nviridisLite"                                                                                                                                                                                                                                                                                                                                                                                                                    
scatterplot3d             "grDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
selectr                   "methods, stringr, R6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
sf                        "classInt (>= 0.2-1),\nDBI (>= 0.8),\ngraphics,\ngrDevices,\ngrid,\nmagrittr,\nRcpp (>= 0.12.18),\nstats,\ntools,\nunits (>= 0.6-0),\nutils"                                                                                                                                                                                                                                                                                                                                          
shiny                     "utils, grDevices, httpuv (>= 1.5.0), mime (>= 0.3), jsonlite\n(>= 0.9.16), xtable, digest, htmltools (>= 0.3.6), R6 (>= 2.0),\nsourcetools, later (>= 0.7.2), promises (>= 1.0.1), tools,\ncrayon, rlang"                                                                                                                                                                                                                                                                            
shinycssloaders           "digest, glue, grDevices, shiny"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
shinythemes               "shiny (>= 0.11)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
simmer                    "Rcpp, magrittr, codetools, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
simmer.plot               "DiagrammeR (>= 1.0.0), dplyr (>= 0.7.0), tidyr (>= 0.7.0),\nscales, utils"                                                                                                                                                                                                                                                                                                                                                                                                           
SixSigma                  "grDevices, stats, graphics, qcc, lattice, ggplot2, reshape2,\nnortest, e1071, scales, testthat, xtable"                                                                                                                                                                                                                                                                                                                                                                              
SnowballC                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sourcetools               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sp                        "utils, stats, graphics, grDevices, lattice, grid"                                                                                                                                                                                                                                                                                                                                                                                                                                    
spacyr                    "data.table, reticulate (>= 1.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
SparseM                   "graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
spData                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
spDataLarge               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
statmod                   "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
stopwords                 "ISOcodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
stringdist                "parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
stringi                   "tools, utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
stringr                   "glue (>= 1.2.0), magrittr, stringi (>= 1.1.7)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
strucchange               "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
survival                  "graphics, Matrix, methods, splines, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                    
svglite                   "Rcpp, gdtools (>= 0.1.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
sys                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
TH.data                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tibble                    "cli, crayon (>= 1.3.4), fansi (>= 0.4.0), methods, pillar (>=\n1.3.1), pkgconfig, rlang (>= 0.3.0), utils"                                                                                                                                                                                                                                                                                                                                                                           
tictoc                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tidyr                     "dplyr (>= 0.7.0), glue, magrittr, purrr, Rcpp, rlang, stringi,\ntibble, tidyselect (>= 0.2.5), utils"                                                                                                                                                                                                                                                                                                                                                                                
tidyselect                "glue (>= 1.3.0), purrr, rlang (>= 0.2.2), Rcpp (>= 0.12.0)"                                                                                                                                                                                                                                                                                                                                                                                                                          
tidytext                  "rlang, dplyr, stringr, hunspell, generics, Matrix, tokenizers,\njaneaustenr, purrr (>= 0.1.1), methods, stopwords"                                                                                                                                                                                                                                                                                                                                                                   
tidyverse                 "broom (>= 0.4.2), cli (>= 1.0.0), crayon (>= 1.3.4), dplyr (>=\n0.7.4), dbplyr (>= 1.1.0), forcats (>= 0.2.0), ggplot2 (>=\n2.2.1), haven (>= 1.1.0), hms (>= 0.3), httr (>= 1.3.1),\njsonlite (>= 1.5), lubridate (>= 1.7.1), magrittr (>= 1.5),\nmodelr (>= 0.1.1), purrr (>= 0.2.4), readr (>= 1.1.1), readxl\n(>= 1.0.0), reprex (>= 0.1.1), rlang (>= 0.1.4), rstudioapi (>=\n0.7), rvest (>= 0.3.2), stringr (>= 1.2.0), tibble (>= 1.3.4),\ntidyr (>= 0.7.2), xml2 (>= 1.1.1)"
timevis                   "htmltools (>= 0.2.6), htmlwidgets (>= 0.6), jsonlite,\nlubridate, magrittr, methods, rmarkdown, shiny"                                                                                                                                                                                                                                                                                                                                                                               
tinytex                   "xfun (>= 0.5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
tm                        "Rcpp, parallel, slam (>= 0.1-37), stats, tools, utils,\ngraphics, xml2"                                                                                                                                                                                                                                                                                                                                                                                                              
tokenizers                "stringi (>= 1.0.1), Rcpp (>= 0.12.3), SnowballC (>= 0.5.1)"                                                                                                                                                                                                                                                                                                                                                                                                                          
triebeard                 "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
tweenr                    "Rcpp (>= 0.12.3), grDevices, farver, magrittr, rlang"                                                                                                                                                                                                                                                                                                                                                                                                                                
twitteR                   "methods, bit64, rjson, DBI (>= 0.3.1), httr (>= 1.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                              
units                     "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
urltools                  "Rcpp, methods, triebeard"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
utf8                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
vctrs                     "backports, ellipsis (>= 0.2.0), digest, glue, rlang (>=\n0.4.0), zeallot"                                                                                                                                                                                                                                                                                                                                                                                                            
viridis                   "stats, ggplot2 (>= 1.0.1), gridExtra"                                                                                                                                                                                                                                                                                                                                                                                                                                                
viridisLite               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
visNetwork                "htmlwidgets, htmltools, jsonlite, magrittr, utils, methods,\ngrDevices, stats"                                                                                                                                                                                                                                                                                                                                                                                                       
webshot                   "magrittr, jsonlite, callr"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
widyr                     "dplyr, tidyr, reshape2, tidytext, purrr, Matrix, broom"                                                                                                                                                                                                                                                                                                                                                                                                                              
withr                     "stats, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
wordcloud                 "Rcpp (>= 0.9.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
xfun                      "stats, tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
xgboost                   "Matrix (>= 1.1-0), methods, data.table (>= 1.9.6), magrittr\n(>= 1.5), stringi (>= 0.5.2)"                                                                                                                                                                                                                                                                                                                                                                                           
XML                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
xmlrpc2                   "curl, xml2, base64enc"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
xtable                    "stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
yaml                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
zeallot                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
zip                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
zoo                       "utils, graphics, grDevices, lattice (>= 0.20-27)"                                                                                                                                                                                                                                                                                                                                                                                                                                    
eha                       "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
mc2d                      "stats, grDevices, graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
rriskDistributions        "stats, graphics, mc2d, eha, msm, tcltk, tkrplot"                                                                                                                                                                                                                                                                                                                                                                                                                                     
survival                  "graphics, Matrix, methods, splines, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                    
abind                     "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
acepack                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ade4                      "graphics, grDevices, methods, stats, utils, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                    
adegenet                  "utils, stats, grDevices, MASS, igraph, ape, shiny, ggplot2,\nseqinr, parallel, spdep, boot, reshape2, dplyr (>= 0.4.1),\nvegan"                                                                                                                                                                                                                                                                                                                                                      
adegraphics               "ade4, graphics, grid, KernSmooth, lattice, latticeExtra,\nmethods, RColorBrewer, sp (>= 1.1-1), stats"                                                                                                                                                                                                                                                                                                                                                                               
adephylo                  "phylobase, ape, adegenet"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
AER                       "stats, Formula (>= 0.2-0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
afex                      "stringr, coin, pbkrtest (>= 0.4-1), lmerTest, car, reshape2,\nstats, methods"                                                                                                                                                                                                                                                                                                                                                                                                        
Amelia                    "foreign, utils, grDevices, graphics, methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                 
AMORE                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
animation                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ape                       "nlme, lattice, graphics, methods, stats, tools, utils,\nparallel, Rcpp (>= 0.12.0)"                                                                                                                                                                                                                                                                                                                                                                                                  
arm                       "abind, coda, graphics, grDevices, methods, nlme, utils"                                                                                                                                                                                                                                                                                                                                                                                                                              
aroma.light               "R.methodsS3 (>= 1.7.1), R.oo (>= 1.21.0), R.utils (>= 2.5.0),\nmatrixStats (>= 0.52.1)"                                                                                                                                                                                                                                                                                                                                                                                              
assertthat                "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
backports                 "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
base64enc                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
BatchJobs                 "backports (>= 1.1.1), brew, checkmate (>= 1.8.0), data.table\n(>= 1.9.6), DBI, digest, parallel, RSQLite (>= 1.0.9011),\nsendmailR, stats, stringi (>= 0.4-1), utils"                                                                                                                                                                                                                                                                                                                
BayesFactor               "pbapply, mvtnorm, stringr, utils, graphics, gtools,\nMatrixModels, Rcpp (>= 0.11.2), methods"                                                                                                                                                                                                                                                                                                                                                                                        
bayesm                    "Rcpp (>= 0.12.0), utils, stats, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                 
BBmisc                    "utils, methods, stats, checkmate (>= 1.8.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                         
bbmle                     "stats, numDeriv, lattice, MASS, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                             
beeswarm                  "stats, graphics, grDevices, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
BiasedUrn                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bindr                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bindrcpp                  "Rcpp, bindr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
bio3d                     "Rcpp, parallel, grid, graphics, grDevices, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                             
bit                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bit64                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
bitops                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
blob                      "tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
blockmodeling             "stats, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
BMS                       "graphics, methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
bold                      "xml2, crul (>= 0.3.8), stringr, jsonlite, reshape, plyr,\ndata.table, tibble"                                                                                                                                                                                                                                                                                                                                                                                                        
BoolNet                   "igraph (>= 0.6), XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
BradleyTerry2             "brglm, gtools, lme4 (>= 1.0), qvcalc, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                         
brew                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
brglm                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
broom                     "plyr, dplyr, tidyr, psych, stringr, reshape2, nlme, methods"                                                                                                                                                                                                                                                                                                                                                                                                                         
ca                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Cairo                     "grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
cairoDevice               "grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
calibrate                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
car                       "MASS, mgcv, nnet, pbkrtest (>= 0.4-4), quantreg, grDevices,\nutils, stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                 
carData                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
caret                     "foreach, methods, plyr, ModelMetrics (>= 1.1.0), nlme,\nreshape2, stats, stats4, utils, grDevices, recipes (>= 0.0.1),\nwithr (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                            
caTools                   "bitops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
cellranger                "rematch, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
checkmate                 "backports (>= 1.1.0), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
chron                     "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
cli                       "assertthat, crayon, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
clusterGeneration         NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
cmprsk                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
coda                      "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
coin                      "stats, modeltools (>= 0.2-9), mvtnorm (>= 1.0-5), multcomp"                                                                                                                                                                                                                                                                                                                                                                                                                          
colorspace                "graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
combinat                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
contfrac                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
conting                   "mvtnorm, BMS, gtools, tseries, coda"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
corpcor                   "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
crayon                    "grDevices, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
crosstalk                 "htmltools (>= 0.3.5), jsonlite, lazyeval, R6, shiny (>= 0.11),\nggplot2"                                                                                                                                                                                                                                                                                                                                                                                                             
crul                      "curl (>= 3.1), R6 (>= 2.2.0), urltools (>= 1.6.0), httpcode\n(>= 0.2.0), mime"                                                                                                                                                                                                                                                                                                                                                                                                       
cubature                  "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
curl                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
CVST                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
data.table                "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
date                      "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
DBI                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
DBItest                   "blob, DBI (>= 0.4-9), desc, hms, methods, R6, testthat (>=\n1.0.2), withr"                                                                                                                                                                                                                                                                                                                                                                                                           
dbplyr                    "assertthat (>= 0.2.0), DBI (>= 0.7), dplyr (>= 0.7.4), glue\n(>= 1.2.0), methods, purrr (>= 0.2.4), R6 (>= 2.2.2), rlang (>=\n0.1.6), tibble (>= 1.4.1), tidyselect (>= 0.2.2), utils"                                                                                                                                                                                                                                                                                               
ddalpha                   "Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
deal                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
deldir                    "graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
DEoptimR                  "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
desc                      "assertthat, utils, R6, crayon, rprojroot"                                                                                                                                                                                                                                                                                                                                                                                                                                            
deSolve                   "methods, graphics, grDevices, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
devtools                  "httr (>= 0.4), utils, tools, methods, memoise (>= 1.0.0),\nwhisker, digest, rstudioapi (>= 0.2.0), jsonlite, stats, git2r\n(>= 0.11.0), withr"                                                                                                                                                                                                                                                                                                                                       
DiagnosisMed              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
dichromat                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
digest                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
dimRed                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
distory                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
DNAcopy                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
doMC                      "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
doParallel                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
DoseFinding               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
doSNOW                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
dotCall64                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
downloader                "utils, digest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
dplyr                     "assertthat, bindrcpp (>= 0.2), glue (>= 1.1.1), magrittr,\nmethods, pkgconfig, rlang (>= 0.1.2), R6, Rcpp (>= 0.12.7),\ntibble (>= 1.3.1), utils"                                                                                                                                                                                                                                                                                                                                    
DRR                       "stats, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
DT                        "htmltools (>= 0.3.6), htmlwidgets (>= 1.0), magrittr,\ncrosstalk"                                                                                                                                                                                                                                                                                                                                                                                                                    
dynlm                     "stats, car (>= 2.0-0), lmtest"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
e1071                     "graphics, grDevices, class, stats, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                   
eco                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ecodist                   "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
effects                   "lme4, nnet, lattice, grid, colorspace, graphics, grDevices,\nstats, survey, utils"                                                                                                                                                                                                                                                                                                                                                                                                   
ellipse                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
elliptic                  "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
energy                    "Rcpp (>= 0.12.6), stats, boot"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
Epi                       "cmprsk, etm, splines, MASS, survival, plyr, Matrix, numDeriv,\ndata.table, zoo"                                                                                                                                                                                                                                                                                                                                                                                                      
epibasix                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
epicalc                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
epiR                      "BiasedUrn, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
epitools                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
eRm                       "graphics, grDevices, stats, methods, MASS, splines, Matrix,\nlattice"                                                                                                                                                                                                                                                                                                                                                                                                                
estimability              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
etm                       "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
evaluate                  "methods, stringr (>= 0.6.2)"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
evd                       "stats, grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
expm                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
FactoMineR                "car,cluster,ellipse,flashClust,graphics,grDevices,lattice,leaps,MASS,scatterplot3d,stats,utils"                                                                                                                                                                                                                                                                                                                                                                                      
fail                      "stats, utils, BBmisc, checkmate"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
fAsianOptions             "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
fAssets                   "fMultivar, robustbase, MASS, sn, ecodist, mvnormtest, energy,\ngrDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                           
fastcluster               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fastICA                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fastmatch                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fBasics                   "stats, grDevices, graphics, methods, utils, MASS, spatial,\ngss, stabledist"                                                                                                                                                                                                                                                                                                                                                                                                         
fBonds                    "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
fCopulae                  "grDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
fExoticOptions            "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
fExtremes                 "methods, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fGarch                    "fastICA, Matrix, graphics, methods, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                    
fields                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
filehash                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fImport                   "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
fitbitScraper             "httr, stringr, jsonlite, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                             
fitcoach                  "caret, dplyr, gbm, ggplot2, httr, jsonlite, plyr, R6, stats,\ngraphics, methods, reshape2"                                                                                                                                                                                                                                                                                                                                                                                           
flashClust                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fMultivar                 "cubature, mvtnorm, sn, methods, grDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                          
fNonlinear                "methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
fOptions                  "graphics, methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
forcats                   "magrittr, rlang, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
foreach                   "codetools, utils, iterators"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
formatR                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Formula                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fPortfolio                "fCopulae, robustbase, MASS, Rglpk, slam, Rsolnp, quadprog,\nkernlab, rneos, methods, grDevices, graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                              
fRegression               "lmtest, mgcv, nnet, polspline, methods, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                
fTrading                  "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
fUnitRoots                "urca, graphics, methods, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                               
futile.logger             "utils, lambda.r (>= 1.1.0), futile.options"                                                                                                                                                                                                                                                                                                                                                                                                                                          
futile.options            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
future                    "digest, globals (>= 0.11.0), listenv (>= 0.6.0), parallel,\nutils"                                                                                                                                                                                                                                                                                                                                                                                                                   
g.data                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gam                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gbm                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gdata                     "gtools, stats, methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
geepack                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
GenABEL                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
GenABEL.data              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
genetics                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
getopt                    "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
ggplot2                   "digest, grid, gtable (>= 0.1.1), MASS, plyr (>= 1.7.1),\nreshape2, scales (>= 0.4.1), stats, tibble, lazyeval"                                                                                                                                                                                                                                                                                                                                                                       
ggvis                     "assertthat, jsonlite (>= 0.9.11), shiny (>= 0.11.1), magrittr,\ndplyr (>= 0.4.0), lazyeval, htmltools (>= 0.2.4), methods"                                                                                                                                                                                                                                                                                                                                                           
git2r                     "graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
glmnet                    "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
globals                   "codetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
glue                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
gmaps                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gmodels                   "MASS, gdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
gnm                       "MASS, stats, graphics, Matrix, nnet, qvcalc (>= 0.8-3), relimp"                                                                                                                                                                                                                                                                                                                                                                                                                      
goftest                   "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
googleVis                 "methods, jsonlite, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
gower                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gplots                    "gtools, gdata, stats, caTools, KernSmooth"                                                                                                                                                                                                                                                                                                                                                                                                                                           
gregmisc                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gridBase                  "graphics, grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
gridExtra                 "gtable, grid, grDevices, graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                            
gsl                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gss                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
gtable                    "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
gtools                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Guerry                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
haplo.stats               "rms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
haven                     "forcats (>= 0.2.0), hms, Rcpp (>= 0.11.4), readr (>= 0.1.0),\ntibble"                                                                                                                                                                                                                                                                                                                                                                                                                
hdf5                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
hexbin                    "lattice, grid, graphics, grDevices, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                    
highr                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Hmisc                     "methods, latticeExtra, cluster, rpart, nnet, acepack, foreign,\ngtable, grid, gridExtra, data.table, htmlTable (>= 1.11.0),\nviridis, htmltools, base64enc"                                                                                                                                                                                                                                                                                                                          
hms                       "methods, pkgconfig, rlang"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
htmlTable                 "stringr, knitr (>= 1.6), magrittr (>= 1.5), methods,\ncheckmate, htmlwidgets, htmltools, rstudioapi (>= 0.6)"                                                                                                                                                                                                                                                                                                                                                                        
htmltools                 "utils, digest, Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
htmlwidgets               "htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml"                                                                                                                                                                                                                                                                                                                                                                                                                                      
httpcode                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
httpuv                    "Rcpp (>= 0.11.0), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
httr                      "jsonlite, mime, curl (>= 0.9.1), openssl (>= 0.8), R6"                                                                                                                                                                                                                                                                                                                                                                                                                               
hwriter                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
hypergeo                  "elliptic (>= 1.3-5), contfrac (>= 1.1-9), deSolve"                                                                                                                                                                                                                                                                                                                                                                                                                                   
igraph                    "graphics, grDevices, irlba, magrittr, Matrix, pkgconfig (>=\n2.0.0), stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                   
inline                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
int64                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ipred                     "rpart (>= 3.1-8), MASS, survival, nnet, class, prodlim"                                                                                                                                                                                                                                                                                                                                                                                                                              
irlba                     "stats, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
ISOcodes                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ISOweek                   "stringr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
iterators                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
its                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
jsonlite                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
kernlab                   "methods, stats, grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
knitr                     "evaluate (>= 0.10), digest, highr, markdown, stringr (>= 0.6),\nyaml, methods, tools"                                                                                                                                                                                                                                                                                                                                                                                                
labeling                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lambda.r                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
latticeExtra              "grid, stats, utils, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
lava                      "grDevices, graphics, methods, numDeriv, stats, survival, utils"                                                                                                                                                                                                                                                                                                                                                                                                                      
lavaan                    "methods, stats4, stats, utils, graphics, MASS, mnormt,\npbivnorm, quadprog, numDeriv"                                                                                                                                                                                                                                                                                                                                                                                                
lazyeval                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
leaps                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
LearnBayes                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lexRankr                  "SnowballC, igraph, Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
lhs                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
listenv                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
littler                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lme4                      "graphics, grid, splines, utils, parallel, MASS, lattice, nlme\n(>= 3.1-123), minqa (>= 1.1.15), nloptr (>= 1.0.4)"                                                                                                                                                                                                                                                                                                                                                                   
lmerTest                  "plyr, MASS, Hmisc, ggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
lmtest                    "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
logspline                 "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
lpSolve                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lsmeans                   "estimability, graphics, stats, utils, nlme, coda (>= 0.17),\nmultcomp, plyr, mvtnorm, xtable (>= 1.8-2)"                                                                                                                                                                                                                                                                                                                                                                             
lubridate                 "stringr, Rcpp (>= 0.11),"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
Luminescence              "bbmle (>= 1.0.18), data.table (>= 1.10.0), httr (>= 1.2.1),\nmatrixStats (>= 0.51.0), methods, minpack.lm (>= 1.2-1), raster\n(>= 2.5-8), readxl (>= 0.1.1), shape (>= 1.4.2), parallel, XML\n(>= 3.98-1.5), zoo (>= 1.7-14)"                                                                                                                                                                                                                                                        
magrittr                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
MALDIquant                "parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
MALDIquantForeign         "base64enc, digest, readBrukerFlexData (>= 1.7), readMzXmlData\n(>= 2.7), XML"                                                                                                                                                                                                                                                                                                                                                                                                        
mapdata                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mapproj                   "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
maps                      "graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
maptools                  "foreign (>= 0.8), methods, grid, lattice, stats, utils,\ngrDevices"                                                                                                                                                                                                                                                                                                                                                                                                                  
maptree                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
markdown                  "utils, mime (>= 0.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Matching                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
MatchIt                   "MASS, Matching, rgenoud"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
matrixcalc                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
MatrixModels              "stats, methods, Matrix (>= 1.1-5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
matrixStats               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
maxLik                    "sandwich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
mclust                    "stats, utils, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
mcmc                      "stats, compiler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
MCMCpack                  "graphics, grDevices, lattice, methods, utils, mcmc, quantreg"                                                                                                                                                                                                                                                                                                                                                                                                                        
medAdherence              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
memoise                   "digest (>= 0.6.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
mFilter                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mi                        "arm (>= 1.4-11)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
mime                      "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
miniUI                    "shiny (>= 0.13), htmltools (>= 0.3), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                          
minpack.lm                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
minqa                     "Rcpp (>= 0.9.10)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
misc3d                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
miscTools                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mixtools                  "MASS, segmented, stats, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mlbench                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mlmRev                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mnormt                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
MNP                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mockery                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
ModelMetrics              "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
modeltools                "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
msm                       "survival,mvtnorm,expm"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
multcomp                  "sandwich (>= 2.3-0), codetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
multicore                 "parallel, tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
munsell                   "colorspace, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
mvnormtest                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
mvtnorm                   "stats, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
natserv                   "crul (>= 0.2.0), xml2 (>= 1.0.0), tibble (>= 1.2), data.table\n(>= 1.10.0)"                                                                                                                                                                                                                                                                                                                                                                                                          
ncdf4                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
nleqslv                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
nloptr                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
NLP                       "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
NMF                       "graphics, stats, stringr (>= 1.0.0), digest, grid, grDevices,\ngridBase, colorspace, RColorBrewer, foreach, doParallel,\nggplot2, reshape2"                                                                                                                                                                                                                                                                                                                                          
nnls                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
nortest                   "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
numDeriv                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
nws                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
openssl                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
optparse                  "methods, getopt (>= 1.19.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
pbapply                   "parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
pbdZMQ                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
pbivnorm                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
pbkrtest                  "Matrix (>= 1.2.3), parallel, MASS, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                          
permute                   "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
phangorn                  "quadprog, igraph (>= 1.0), Matrix, parallel, methods, utils,\nstats, graphics, grDevices, fastmatch, magrittr, Rcpp (>=\n0.12.0)"                                                                                                                                                                                                                                                                                                                                                    
pheatmap                  "grid, RColorBrewer, scales, gtable, stats, grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                      
phylobase                 "ade4, ape (>= 3.0), Rcpp (>= 0.11.0), rncl (>= 0.6.0), grid,\nmethods, stats, RNeXML"                                                                                                                                                                                                                                                                                                                                                                                                
phytools                  "animation, clusterGeneration, coda, combinat, graphics,\ngrDevices, MASS, methods, mnormt, msm, nlme, numDeriv, phangorn\n(>= 2.3.1), plotrix, scatterplot3d, stats, utils"                                                                                                                                                                                                                                                                                                          
pillar                    "cli, crayon (>= 1.3.4), methods, rlang, utf8"                                                                                                                                                                                                                                                                                                                                                                                                                                        
pkgconfig                 "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
pkgKitten                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
pkgmaker                  "methods, tools, codetools, digest, stringr, xtable, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                       
plogr                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
plotly                    "tools, scales, httr, jsonlite, magrittr, digest, viridisLite,\nbase64enc, htmltools, htmlwidgets (>= 0.9), tidyr, hexbin,\nRColorBrewer, dplyr, tibble, lazyeval (>= 0.2.0), crosstalk,\npurrr, data.table"                                                                                                                                                                                                                                                                          
plotrix                   "grDevices, graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
plyr                      "Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
png                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
polspline                 "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
polyclip                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
polyCub                   "grDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
praise                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
prettyunits               "magrittr, assertthat, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
princurve                 "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
prodlim                   "Rcpp (>= 0.11.5), stats, graphics, survival, KernSmooth, lava"                                                                                                                                                                                                                                                                                                                                                                                                                       
profileModel              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
progress                  "prettyunits, R6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
proto                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
PSCBS                     "R.methodsS3 (>= 1.7.1),\nR.oo (>= 1.21.0),\nR.utils (>= 2.5.0),\nR.cache (>= 0.12.0),\nmatrixStats (>= 0.52.2),\naroma.light (>= 2.4.0),\nDNAcopy (>= 1.42.0),\nlistenv (>= 0.6.0),\nfuture (>= 1.5.0),\nparallel"                                                                                                                                                                                                                                                                   
pscl                      "MASS, datasets, grDevices, graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                   
psy                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
psych                     "mnormt,parallel,stats,graphics,grDevices,methods,foreign,lattice,nlme"                                                                                                                                                                                                                                                                                                                                                                                                               
purrr                     "magrittr (>= 1.5), rlang (>= 0.1), tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                           
pwt                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
pwt8                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
pwt9                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
qqman                     "calibrate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
qtl                       "parallel, graphics, stats, utils, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                         
quadprog                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
quantmod                  "curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
quantreg                  "methods, graphics, Matrix, MatrixModels"                                                                                                                                                                                                                                                                                                                                                                                                                                             
qvcalc                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
R.cache                   "utils,\nR.methodsS3 (>= 1.7.0),\nR.oo (>= 1.19.0),\nR.utils (>= 2.1.0),\ndigest (>= 0.6.8)"                                                                                                                                                                                                                                                                                                                                                                                          
R.methodsS3               "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
R.oo                      "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
R.utils                   "methods, utils, tools, R.methodsS3 (>= 1.7.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
R6                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RandomFields              "graphics, methods, grDevices, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                          
RandomFieldsUtils         "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
randomForest              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RaschSampler              "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
raster                    "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Rcmdr                     "tcltk, tcltk2 (>= 1.2-6), abind, relimp (>= 1.0-5)"                                                                                                                                                                                                                                                                                                                                                                                                                                  
RcmdrMisc                 "abind, colorspace, Hmisc (>= 4.1-0), MASS, e1071, foreign,\nhaven, readstata13, readxl, graphics, grDevices, stats, nortest"                                                                                                                                                                                                                                                                                                                                                         
RColorBrewer              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rcpp                      "methods, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
RcppArmadillo             "Rcpp (>= 0.11.0), stats, utils, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                             
RcppEigen                 "Matrix (>= 1.1-0), Rcpp (>= 0.11.0), stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                   
RcppGSL                   "Rcpp (>= 0.11.0), stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
RcppRoll                  "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RCurl                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
readBrukerFlexData        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
readMzXmlData             "base64enc, digest, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
readr                     "Rcpp (>= 0.12.0.5), tibble, hms, R6"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
readstata13               "Rcpp (>= 0.11.5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
readxl                    "cellranger, Rcpp (>= 0.11.6), tibble (>= 1.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
recipes                   "tibble, stats, ipred, dimRed (>= 0.1.0), lubridate, timeDate,\nddalpha, purrr, rlang (>= 0.1.1), gower, RcppRoll, tidyselect\n(>= 0.1.1), magrittr"                                                                                                                                                                                                                                                                                                                                  
registry                  "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
relimp                    "stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rematch                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rentrez                   "XML, httr (>= 0.5), jsonlite (>= 0.9)"                                                                                                                                                                                                                                                                                                                                                                                                                                               
repr                      "utils, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
reshape                   "plyr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
reshape2                  "plyr (>= 1.8.1), stringr, Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
rgenoud                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rggobi                    "RGtk2, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rgl                       "graphics, grDevices, stats, utils, htmlwidgets, htmltools,\nknitr, jsonlite (>= 0.9.20), shiny, magrittr, crosstalk"                                                                                                                                                                                                                                                                                                                                                                 
Rglpk                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rglwidget                 "rgl (>= 0.96.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
RGtk2                     "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
rhandsontable             "jsonlite, htmlwidgets (>= 0.3.3), magrittr, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                 
RInside                   "Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ritis                     "solrium (>= 1.0.0), crul (>= 0.4.0), jsonlite (>= 1.5),\ndata.table (>= 1.9.6), tibble (>= 1.3.4)"                                                                                                                                                                                                                                                                                                                                                                                   
rjags                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rJava                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rjson                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RJSONIO                   "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
rlang                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rlist                     "yaml, jsonlite, XML, data.table"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
RLumShiny                 "Luminescence (>= 0.7.3), shiny (>= 0.14.0), rhandsontable (>=\n0.3.4), data.table (>= 1.10.4), googleVis (>= 0.6.2),\nshinydashboard (>= 0.5.3), readxl (>= 1.0.0)"                                                                                                                                                                                                                                                                                                                  
Rmpi                      "parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
rms                       "methods, quantreg, rpart, nlme (>= 3.1-123), polspline,\nmultcomp, htmlTable (>= 1.11.0), htmltools"                                                                                                                                                                                                                                                                                                                                                                                 
RMySQL                    "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
rncl                      "Rcpp (>= 0.11.0), progress (>= 1.1.2), stats"                                                                                                                                                                                                                                                                                                                                                                                                                                        
rneos                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RNetCDF                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RNeXML                    "XML (>= 3.95), plyr (>= 1.8), taxize (>= 0.2.2), reshape2 (>=\n1.2.2), httr (>= 0.3), uuid (>= 0.1-1), dplyr (>= 0.4.0),\nlazyeval (>= 0.1.0), tidyr (>= 0.3.1), stringr (>= 1.0)"                                                                                                                                                                                                                                                                                                   
rngtools                  "stringr, digest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
Rniftilib                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
robustbase                "stats, graphics, utils, methods, DEoptimR"                                                                                                                                                                                                                                                                                                                                                                                                                                           
ROCR                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RODBC                     "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
rotl                      "httr, jsonlite, assertthat (>= 0.1), rncl (>= 0.6.0), ape,\nrentrez"                                                                                                                                                                                                                                                                                                                                                                                                                 
RPostgreSQL               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rprojroot                 "backports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
RProtoBuf                 "utils, stats, tools, Rcpp, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RQuantLib                 "methods, Rcpp (>= 0.11.0), stats, graphics, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                     
rredlist                  "crul (>= 0.3.8), jsonlite (>= 1.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
RSclient                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rsdmx                     "methods, XML (>= 3.98-1.3), RCurl, plyr, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                      
Rserve                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rsolnp                    "truncnorm, parallel, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
rsprng                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RSQLite                   "bit64, blob (>= 1.1), DBI (>= 0.4-9), memoise, methods,\npkgconfig, Rcpp (>= 0.12.7)"                                                                                                                                                                                                                                                                                                                                                                                                
rstudioapi                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Rsymphony                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RUnit                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sandwich                  "stats, utils, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
scales                    "RColorBrewer, dichromat, plyr, munsell (>= 0.2), labeling,\nRcpp, R6, viridisLite"                                                                                                                                                                                                                                                                                                                                                                                                   
scatterD3                 "htmlwidgets, digest, ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
scatterplot3d             "grDevices, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
segmented                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sem                       "matrixcalc, MASS, boot, mi (>= 0.9-99), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                       
semTools                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sendmailR                 "base64enc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
seqinr                    "ade4,segmented"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
seroincidence             "stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
sfsmisc                   "grDevices, methods, utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
shape                     "stats, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
shiny                     "utils, httpuv (>= 1.3.5), mime (>= 0.3), jsonlite (>= 0.9.16),\nxtable, digest, htmltools (>= 0.3.5), R6 (>= 2.0), sourcetools,\ntools"                                                                                                                                                                                                                                                                                                                                              
shinyBS                   "shiny (>= 0.11), htmltools"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
shinydashboard            "utils, shiny (>= 1.0.0), htmltools (>= 0.2.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                       
shinyjs                   "digest (>= 0.6.8), htmltools (>= 0.2.6), jsonlite, miniUI (>=\n0.1.1), shiny (>= 0.11.1), stats"                                                                                                                                                                                                                                                                                                                                                                                     
slam                      "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
sm                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sn                        "mnormt (>= 1.5-4), numDeriv, stats, grDevices, graphics, utils"                                                                                                                                                                                                                                                                                                                                                                                                                      
snow                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
SnowballC                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
solrium                   "utils, dplyr (>= 0.5.0), plyr (>= 1.8.4), crul (>= 0.4.0),\nxml2 (>= 1.0.0), jsonlite (>= 1.0), tibble (>= 1.2), R6"                                                                                                                                                                                                                                                                                                                                                                 
sourcetools               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sp                        "utils, stats, graphics, grDevices, lattice, grid"                                                                                                                                                                                                                                                                                                                                                                                                                                    
spam                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
SparseM                   "graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
spatstat                  "spatstat.utils (>= 1.7-1), mgcv, Matrix, deldir (>= 0.0-21),\nabind, tensor, polyclip (>= 1.5-0), goftest"                                                                                                                                                                                                                                                                                                                                                                           
spatstat.data             "spatstat.utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
spatstat.utils            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
spc                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
spdep                     "LearnBayes, deldir, boot (>= 1.3-1), splines, coda, nlme,\nMASS, stats, gmodels, expm, graphics, grDevices, utils"                                                                                                                                                                                                                                                                                                                                                                   
stabledist                "stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
statmod                   "stats, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
stringi                   "tools, utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
stringr                   "glue, magrittr, stringi (>= 1.1.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
strucchange               "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
surveillance              "Rcpp (>= 0.11.1), polyCub (>= 0.6.0), MASS, Matrix, nlme,\nspatstat (>= 1.36-0)"                                                                                                                                                                                                                                                                                                                                                                                                     
survey                    "stats, graphics, splines, lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
taxize                    "graphics, methods, stats, utils, httr (>= 1.2.1), xml2 (>=\n1.0.0), jsonlite, reshape2, stringr, plyr, foreach, ape, bold\n(>= 0.3.5), data.table, rredlist (>= 0.3.0), rotl (>= 3.0.0),\nritis (>= 0.5.0), tibble (>= 1.2), worrms (>= 0.1.0), natserv\n(>= 0.1.4), wikitaxa (>= 0.1.4)"                                                                                                                                                                                            
tcltk2                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
TeachingDemos             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tensor                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
testit                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
testthat                  "cli, crayon, digest, magrittr, methods, praise, R6 (>= 2.2.0),\nrlang, withr (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                             
tgp                       "maptree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
TH.data                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tibble                    "crayon, methods, pillar, rlang, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                               
tidyr                     "dplyr (>= 0.7.0), glue, magrittr, purrr, Rcpp, rlang, stringi,\ntibble, tidyselect"                                                                                                                                                                                                                                                                                                                                                                                                  
tidyselect                "glue, purrr, rlang (>= 0.2.0), Rcpp (>= 0.12.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                     
tikzDevice                "filehash (>= 2.3), png"                                                                                                                                                                                                                                                                                                                                                                                                                                                              
timeDate                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
timeSeries                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tkrplot                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tm                        "Rcpp, parallel, slam (>= 0.1-37), stats, tools, utils,\ngraphics, xml2"                                                                                                                                                                                                                                                                                                                                                                                                              
treescape                 "adegenet, adegraphics, adephylo, combinat, compiler, distory,\nfields, htmlwidgets, MASS, phangorn, Rcpp, rgl, RLumShiny,\nscatterD3, shiny, shinyBS, utils"                                                                                                                                                                                                                                                                                                                         
treespace                 "adegenet, adegraphics, adephylo, combinat, compiler, distory,\nfields, htmlwidgets, MASS, parallel, phangorn, phytools, Rcpp,\nRLumShiny, scatterD3, shiny, shinyBS, utils"                                                                                                                                                                                                                                                                                                          
triebeard                 "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
truncdist                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
truncnorm                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
tseries                   "graphics, stats, utils, quadprog, zoo, quantmod (>= 0.4.9)"                                                                                                                                                                                                                                                                                                                                                                                                                          
TTR                       "xts (>= 0.10-0), zoo, curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
urca                      "nlme, graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
urltools                  "Rcpp, methods, triebeard"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
utf8                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
uuid                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
V8                        "Rcpp (>= 0.12), jsonlite (>= 1.0), curl (>= 1.0), utils"                                                                                                                                                                                                                                                                                                                                                                                                                             
vcd                       "stats, utils, MASS, grDevices, colorspace, lmtest"                                                                                                                                                                                                                                                                                                                                                                                                                                   
vcdExtra                  "MASS, grDevices, stats, utils, ca"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
vegan                     "MASS, cluster, mgcv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
VGAM                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
vioplot                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
viridis                   "stats, ggplot2 (>= 1.0.1), gridExtra"                                                                                                                                                                                                                                                                                                                                                                                                                                                
viridisLite               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
WDI                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
webmockr                  "curl, jsonlite, magrittr (>= 1.5), lazyeval (>= 0.2.0), R6 (>=\n2.1.3), urltools (>= 1.6.0)"                                                                                                                                                                                                                                                                                                                                                                                         
whisker                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
WikidataR                 "httr, jsonlite, WikipediR (>= 1.4.0), utils"                                                                                                                                                                                                                                                                                                                                                                                                                                         
WikipediR                 "httr, jsonlite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
wikitaxa                  "WikidataR, data.table, curl, crul (>= 0.3.4), tibble,\njsonlite, xml2"                                                                                                                                                                                                                                                                                                                                                                                                               
withr                     "stats, lattice, graphics, grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
wordcloud                 "slam, Rcpp (>= 0.9.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
worrms                    "crul (>= 0.3.6), tibble (>= 1.2), jsonlite (>= 1.1),\ndata.table"                                                                                                                                                                                                                                                                                                                                                                                                                    
XML                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
xml2                      "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
XMLRPC                    "methods, RCurl, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
xtable                    "stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
xts                       "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
yaml                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Zelig                     "AER, Amelia, coda, dplyr (>= 0.3.0.2), Formula, geepack,\njsonlite, sandwich, MASS, MatchIt, maxLik, MCMCpack, methods,\nquantreg, survey, VGAM"                                                                                                                                                                                                                                                                                                                                     
zoo                       "utils, graphics, grDevices, lattice (>= 0.20-27)"                                                                                                                                                                                                                                                                                                                                                                                                                                    
base                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
boot                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
class                     "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
cluster                   "graphics, grDevices, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
codetools                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
compiler                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
datasets                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
foreign                   "methods, utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                               
graphics                  "grDevices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
grDevices                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
grid                      "grDevices, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
KernSmooth                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lattice                   "grid, grDevices, graphics, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                             
MASS                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
Matrix                    "methods, graphics, grid, stats, utils, lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                      
methods                   "utils, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mgcv                      "methods, stats, graphics, Matrix"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
nlme                      "graphics, stats, utils, lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
nnet                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
parallel                  "tools, compiler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
rpart                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
spatial                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
splines                   "graphics, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
stats                     "utils, grDevices, graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
stats4                    "graphics, methods, stats"                                                                                                                                                                                                                                                                                                                                                                                                                                                            
survival                  "graphics, Matrix, methods, splines, stats, utils"                                                                                                                                                                                                                                                                                                                                                                                                                                    
tcltk                     "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
tools                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
utils                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                          LinkingTo                                         
abind                     NA                                                
acepack                   NA                                                
adabag                    NA                                                
alabama                   NA                                                
alluvial                  NA                                                
askpass                   NA                                                
assertthat                NA                                                
backports                 NA                                                
base64enc                 NA                                                
bgmfiles                  NA                                                
BH                        NA                                                
bibliometrix              NA                                                
bibtex                    NA                                                
BiocGenerics              NA                                                
BiocInstaller             NA                                                
bit                       NA                                                
bit64                     NA                                                
bitops                    NA                                                
blob                      NA                                                
bookdown                  NA                                                
brew                      NA                                                
broom                     NA                                                
callr                     NA                                                
car                       NA                                                
carData                   NA                                                
caTools                   NA                                                
cellranger                NA                                                
checkmate                 NA                                                
classInt                  NA                                                
cli                       NA                                                
clipr                     NA                                                
colorspace                NA                                                
corrplot                  NA                                                
cowplot                   NA                                                
crayon                    NA                                                
crosstalk                 NA                                                
crul                      NA                                                
csvread                   NA                                                
Cubist                    NA                                                
curl                      NA                                                
data.table                NA                                                
data.tree                 NA                                                
DBI                       NA                                                
dendextend                NA                                                
DEoptim                   NA                                                
DiagrammeR                NA                                                
digest                    NA                                                
downloader                NA                                                
dplyr                     "BH, plogr (>= 0.2.0), Rcpp (>= 1.0.1)"           
DT                        NA                                                
dygraphs                  NA                                                
e1071                     NA                                                
ECOSolveR                 NA                                                
eha                       NA                                                
ellipsis                  NA                                                
evaluate                  NA                                                
expm                      NA                                                
extrafont                 NA                                                
extrafontdb               NA                                                
factoextra                NA                                                
FactoMineR                NA                                                
fansi                     NA                                                
farver                    "Rcpp"                                            
fastmatch                 NA                                                
FinCal                    NA                                                
fitdistrplus              NA                                                
flexdashboard             NA                                                
forcats                   NA                                                
foreign                   NA                                                
Formula                   NA                                                
fs                        "Rcpp"                                            
gbRd                      NA                                                
gdalUtils                 NA                                                
gdtools                   "Rcpp"                                            
genalg                    NA                                                
generics                  NA                                                
geojsonR                  "Rcpp, RcppArmadillo (>= 0.7.6)"                  
geosphere                 NA                                                
gepaf                     NA                                                
ggforce                   "Rcpp, RcppEigen"                                 
ggmap                     NA                                                
ggplot2                   NA                                                
ggpubr                    NA                                                
ggraph                    "Rcpp"                                            
ggrepel                   "Rcpp"                                            
ggsci                     NA                                                
ggsignif                  NA                                                
gistr                     NA                                                
globalOptTests            NA                                                
glue                      NA                                                
graph                     NA                                                
gridExtra                 NA                                                
gtable                    NA                                                
gWidgets                  NA                                                
gWidgetsRGtk2             NA                                                
haven                     "Rcpp"                                            
highr                     NA                                                
Hmisc                     NA                                                
hms                       NA                                                
htmlTable                 NA                                                
htmltools                 "Rcpp"                                            
htmlwidgets               NA                                                
httpcode                  NA                                                
httpuv                    "Rcpp, BH, later"                                 
httr                      NA                                                
hunspell                  "Rcpp (>= 0.12.12)"                               
igraph                    NA                                                
influenceR                NA                                                
isoband                   "Rcpp, testthat"                                  
ISOcodes                  NA                                                
janeaustenr               NA                                                
jpeg                      NA                                                
jsonlite                  NA                                                
kernlab                   NA                                                
kknn                      NA                                                
knitr                     NA                                                
labeling                  NA                                                
labelled                  NA                                                
later                     "Rcpp, BH"                                        
latticeExtra              NA                                                
lazyeval                  NA                                                
leaflet                   NA                                                
leaflet.extras            NA                                                
leafpop                   "Rcpp"                                            
lme4                      "Rcpp (>= 0.10.5), RcppEigen"                     
lmtest                    NA                                                
lpSolve                   NA                                                
lpSolveAPI                NA                                                
lsei                      NA                                                
lubridate                 "Rcpp,"                                           
magrittr                  NA                                                
maps                      NA                                                
maptools                  NA                                                
markdown                  NA                                                
MatrixModels              NA                                                
matrixStats               NA                                                
mc2d                      NA                                                
mclust                    NA                                                
mco                       NA                                                
mda                       NA                                                
memoise                   NA                                                
mime                      NA                                                
minqa                     "Rcpp"                                            
mlogit                    NA                                                
modelr                    NA                                                
modeltools                NA                                                
munsell                   NA                                                
nabor                     "Rcpp, RcppEigen (>= 0.3.2.2.0), BH (>= 1.54.0-4)"
network                   NA                                                
networkD3                 NA                                                
nloptr                    NA                                                
NLP                       NA                                                
npsurv                    NA                                                
opencage                  NA                                                
openssl                   NA                                                
openxlsx                  "Rcpp"                                            
optimx                    NA                                                
osmar                     NA                                                
packrat                   NA                                                
party                     "mvtnorm"                                         
pbkrtest                  NA                                                
PerformanceAnalytics      NA                                                
pillar                    NA                                                
pkgconfig                 NA                                                
plogr                     NA                                                
plotly                    NA                                                
pls                       NA                                                
plyr                      "Rcpp"                                            
png                       NA                                                
polyclip                  NA                                                
polynom                   NA                                                
prettyunits               NA                                                
processx                  NA                                                
progress                  NA                                                
promises                  "later, Rcpp"                                     
pryr                      "Rcpp"                                            
ps                        NA                                                
purrr                     NA                                                
qcc                       NA                                                
qmap                      NA                                                
qualityTools              NA                                                
quantmod                  NA                                                
quantreg                  NA                                                
questionr                 NA                                                
R.methodsS3               NA                                                
R.oo                      NA                                                
R.utils                   NA                                                
R6                        NA                                                
raster                    "Rcpp"                                            
rbgm                      NA                                                
rbokeh                    NA                                                
rCarto                    NA                                                
RColorBrewer              NA                                                
Rcpp                      NA                                                
RcppArmadillo             "Rcpp"                                            
RcppEigen                 "Rcpp"                                            
RcppParallel              NA                                                
RCurl                     NA                                                
Rdpack                    NA                                                
readr                     "Rcpp, BH"                                        
readxl                    "progress, Rcpp"                                  
rematch                   NA                                                
reprex                    NA                                                
reshape2                  "Rcpp"                                            
reticulate                "Rcpp"                                            
rgdal                     "sp"                                              
rgeos                     "sp"                                              
rgexf                     NA                                                
RgoogleMaps               NA                                                
RGraphics                 NA                                                
Rgraphviz                 NA                                                
rio                       NA                                                
RISmed                    NA                                                
RJSONIO                   NA                                                
rlang                     NA                                                
rmarkdown                 NA                                                
rmdformats                NA                                                
rminer                    NA                                                
ROI                       NA                                                
ROI.models.globalOptTests NA                                                
ROI.models.miplib         NA                                                
ROI.models.netlib         NA                                                
ROI.plugin.alabama        NA                                                
ROI.plugin.deoptim        NA                                                
ROI.plugin.ecos           NA                                                
ROI.plugin.glpk           NA                                                
ROI.plugin.ipop           NA                                                
ROI.plugin.lpsolve        NA                                                
ROI.plugin.msbinlp        NA                                                
ROI.plugin.neos           NA                                                
ROI.plugin.optimx         NA                                                
Rook                      NA                                                
rprojroot                 NA                                                
RQDA                      NA                                                
rriskDistributions        NA                                                
rsconnect                 NA                                                
rscopus                   NA                                                
RSpectra                  "Rcpp, RcppEigen (>= 0.3.3.3.0)"                  
RSQLite                   "BH, plogr (>= 0.2.0), Rcpp"                      
rstudioapi                NA                                                
RTriangle                 NA                                                
Rttf2pt1                  NA                                                
rtweet                    "Rcpp"                                            
rvest                     NA                                                
sandwich                  NA                                                
satellite                 "Rcpp"                                            
scales                    "Rcpp"                                            
scatterplot3d             NA                                                
selectr                   NA                                                
sf                        "Rcpp"                                            
shiny                     NA                                                
shinycssloaders           NA                                                
shinythemes               NA                                                
simmer                    "Rcpp (>= 0.12.9), BH (>= 1.62.0-1)"              
simmer.plot               NA                                                
SixSigma                  NA                                                
SnowballC                 NA                                                
sourcetools               NA                                                
sp                        NA                                                
spacyr                    NA                                                
SparseM                   NA                                                
spData                    NA                                                
spDataLarge               NA                                                
statmod                   NA                                                
stopwords                 NA                                                
stringdist                NA                                                
stringi                   NA                                                
stringr                   NA                                                
strucchange               NA                                                
survival                  NA                                                
svglite                   "Rcpp, gdtools, BH"                               
sys                       NA                                                
TH.data                   NA                                                
tibble                    NA                                                
tictoc                    NA                                                
tidyr                     "Rcpp"                                            
tidyselect                "Rcpp (>= 0.12.0),"                               
tidytext                  NA                                                
tidyverse                 NA                                                
timevis                   NA                                                
tinytex                   NA                                                
tm                        "BH, Rcpp"                                        
tokenizers                "Rcpp"                                            
triebeard                 "Rcpp"                                            
tweenr                    "Rcpp"                                            
twitteR                   NA                                                
units                     "Rcpp (>= 0.12.10)"                               
urltools                  "Rcpp"                                            
utf8                      NA                                                
vctrs                     NA                                                
viridis                   NA                                                
viridisLite               NA                                                
visNetwork                NA                                                
webshot                   NA                                                
widyr                     NA                                                
withr                     NA                                                
wordcloud                 "Rcpp"                                            
xfun                      NA                                                
xgboost                   NA                                                
XML                       NA                                                
xmlrpc2                   NA                                                
xtable                    NA                                                
yaml                      NA                                                
zeallot                   NA                                                
zip                       NA                                                
zoo                       NA                                                
eha                       NA                                                
mc2d                      NA                                                
rriskDistributions        NA                                                
survival                  NA                                                
abind                     NA                                                
acepack                   NA                                                
ade4                      NA                                                
adegenet                  NA                                                
adegraphics               NA                                                
adephylo                  NA                                                
AER                       NA                                                
afex                      NA                                                
Amelia                    "Rcpp (>= 0.11), RcppArmadillo"                   
AMORE                     NA                                                
animation                 NA                                                
ape                       "Rcpp"                                            
arm                       NA                                                
aroma.light               NA                                                
assertthat                NA                                                
backports                 NA                                                
base64enc                 NA                                                
BatchJobs                 NA                                                
BayesFactor               "Rcpp (>= 0.11.2), RcppEigen (>= 0.3.2.2.0)"      
bayesm                    "Rcpp, RcppArmadillo"                             
BBmisc                    NA                                                
bbmle                     NA                                                
beeswarm                  NA                                                
BiasedUrn                 NA                                                
bindr                     NA                                                
bindrcpp                  "Rcpp, plogr"                                     
bio3d                     "Rcpp"                                            
bit                       NA                                                
bit64                     NA                                                
bitops                    NA                                                
blob                      NA                                                
blockmodeling             NA                                                
BMS                       NA                                                
bold                      NA                                                
BoolNet                   NA                                                
BradleyTerry2             NA                                                
brew                      NA                                                
brglm                     NA                                                
broom                     NA                                                
ca                        NA                                                
Cairo                     NA                                                
cairoDevice               NA                                                
calibrate                 NA                                                
car                       NA                                                
carData                   NA                                                
caret                     NA                                                
caTools                   NA                                                
cellranger                NA                                                
checkmate                 NA                                                
chron                     NA                                                
cli                       NA                                                
clusterGeneration         NA                                                
cmprsk                    NA                                                
coda                      NA                                                
coin                      NA                                                
colorspace                NA                                                
combinat                  NA                                                
contfrac                  NA                                                
conting                   NA                                                
corpcor                   NA                                                
crayon                    NA                                                
crosstalk                 NA                                                
crul                      NA                                                
cubature                  "Rcpp"                                            
curl                      NA                                                
CVST                      NA                                                
data.table                NA                                                
date                      NA                                                
DBI                       NA                                                
DBItest                   NA                                                
dbplyr                    NA                                                
ddalpha                   "Rcpp"                                            
deal                      NA                                                
deldir                    NA                                                
DEoptimR                  NA                                                
desc                      NA                                                
deSolve                   NA                                                
devtools                  NA                                                
DiagnosisMed              NA                                                
dichromat                 NA                                                
digest                    NA                                                
dimRed                    NA                                                
distory                   NA                                                
DNAcopy                   NA                                                
doMC                      NA                                                
doParallel                NA                                                
DoseFinding               NA                                                
doSNOW                    NA                                                
dotCall64                 NA                                                
downloader                NA                                                
dplyr                     "Rcpp (>= 0.12.0), bindrcpp, plogr"               
DRR                       NA                                                
DT                        NA                                                
dynlm                     NA                                                
e1071                     NA                                                
eco                       NA                                                
ecodist                   NA                                                
effects                   NA                                                
ellipse                   NA                                                
elliptic                  NA                                                
energy                    "Rcpp"                                            
Epi                       NA                                                
epibasix                  NA                                                
epicalc                   NA                                                
epiR                      NA                                                
epitools                  NA                                                
eRm                       NA                                                
estimability              NA                                                
etm                       NA                                                
evaluate                  NA                                                
evd                       NA                                                
expm                      NA                                                
FactoMineR                NA                                                
fail                      NA                                                
fAsianOptions             NA                                                
fAssets                   NA                                                
fastcluster               NA                                                
fastICA                   NA                                                
fastmatch                 NA                                                
fBasics                   NA                                                
fBonds                    NA                                                
fCopulae                  NA                                                
fExoticOptions            NA                                                
fExtremes                 NA                                                
fGarch                    NA                                                
fields                    NA                                                
filehash                  NA                                                
fImport                   NA                                                
fitbitScraper             NA                                                
fitcoach                  NA                                                
flashClust                NA                                                
fMultivar                 NA                                                
fNonlinear                NA                                                
fOptions                  NA                                                
forcats                   NA                                                
foreach                   NA                                                
formatR                   NA                                                
Formula                   NA                                                
fPortfolio                NA                                                
fRegression               NA                                                
fTrading                  NA                                                
fUnitRoots                NA                                                
futile.logger             NA                                                
futile.options            NA                                                
future                    NA                                                
g.data                    NA                                                
gam                       NA                                                
gbm                       NA                                                
gdata                     NA                                                
geepack                   NA                                                
GenABEL                   NA                                                
GenABEL.data              NA                                                
genetics                  NA                                                
getopt                    NA                                                
ggplot2                   NA                                                
ggvis                     NA                                                
git2r                     NA                                                
glmnet                    NA                                                
globals                   NA                                                
glue                      NA                                                
gmaps                     NA                                                
gmodels                   NA                                                
gnm                       NA                                                
goftest                   NA                                                
googleVis                 NA                                                
gower                     NA                                                
gplots                    NA                                                
gregmisc                  NA                                                
gridBase                  NA                                                
gridExtra                 NA                                                
gsl                       NA                                                
gss                       NA                                                
gtable                    NA                                                
gtools                    NA                                                
Guerry                    NA                                                
haplo.stats               NA                                                
haven                     "Rcpp"                                            
hdf5                      NA                                                
hexbin                    NA                                                
highr                     NA                                                
Hmisc                     NA                                                
hms                       NA                                                
htmlTable                 NA                                                
htmltools                 "Rcpp"                                            
htmlwidgets               NA                                                
httpcode                  NA                                                
httpuv                    "Rcpp"                                            
httr                      NA                                                
hwriter                   NA                                                
hypergeo                  NA                                                
igraph                    NA                                                
inline                    NA                                                
int64                     NA                                                
ipred                     NA                                                
irlba                     "Matrix"                                          
ISOcodes                  NA                                                
ISOweek                   NA                                                
iterators                 NA                                                
its                       NA                                                
jsonlite                  NA                                                
kernlab                   NA                                                
knitr                     NA                                                
labeling                  NA                                                
lambda.r                  NA                                                
latticeExtra              NA                                                
lava                      NA                                                
lavaan                    NA                                                
lazyeval                  NA                                                
leaps                     NA                                                
LearnBayes                NA                                                
lexRankr                  "Rcpp"                                            
lhs                       NA                                                
listenv                   NA                                                
littler                   NA                                                
lme4                      "Rcpp (>= 0.10.5), RcppEigen"                     
lmerTest                  NA                                                
lmtest                    NA                                                
logspline                 NA                                                
lpSolve                   NA                                                
lsmeans                   NA                                                
lubridate                 "Rcpp,"                                           
Luminescence              "Rcpp (>= 0.12.9), RcppArmadillo (>= 0.7.600.1.0)"
magrittr                  NA                                                
MALDIquant                NA                                                
MALDIquantForeign         NA                                                
mapdata                   NA                                                
mapproj                   NA                                                
maps                      NA                                                
maptools                  NA                                                
maptree                   NA                                                
markdown                  NA                                                
Matching                  NA                                                
MatchIt                   NA                                                
matrixcalc                NA                                                
MatrixModels              NA                                                
matrixStats               NA                                                
maxLik                    NA                                                
mclust                    NA                                                
mcmc                      NA                                                
MCMCpack                  NA                                                
medAdherence              NA                                                
memoise                   NA                                                
mFilter                   NA                                                
mi                        NA                                                
mime                      NA                                                
miniUI                    NA                                                
minpack.lm                NA                                                
minqa                     "Rcpp"                                            
misc3d                    NA                                                
miscTools                 NA                                                
mixtools                  NA                                                
mlbench                   NA                                                
mlmRev                    NA                                                
mnormt                    NA                                                
MNP                       NA                                                
mockery                   NA                                                
ModelMetrics              "Rcpp"                                            
modeltools                NA                                                
msm                       NA                                                
multcomp                  NA                                                
multicore                 NA                                                
munsell                   NA                                                
mvnormtest                NA                                                
mvtnorm                   NA                                                
natserv                   NA                                                
ncdf4                     NA                                                
nleqslv                   NA                                                
nloptr                    NA                                                
NLP                       NA                                                
NMF                       NA                                                
nnls                      NA                                                
nortest                   NA                                                
numDeriv                  NA                                                
nws                       NA                                                
openssl                   NA                                                
optparse                  NA                                                
pbapply                   NA                                                
pbdZMQ                    NA                                                
pbivnorm                  NA                                                
pbkrtest                  NA                                                
permute                   NA                                                
phangorn                  "Rcpp"                                            
pheatmap                  NA                                                
phylobase                 "Rcpp"                                            
phytools                  NA                                                
pillar                    NA                                                
pkgconfig                 NA                                                
pkgKitten                 NA                                                
pkgmaker                  NA                                                
plogr                     NA                                                
plotly                    NA                                                
plotrix                   NA                                                
plyr                      "Rcpp"                                            
png                       NA                                                
polspline                 NA                                                
polyclip                  NA                                                
polyCub                   NA                                                
praise                    NA                                                
prettyunits               NA                                                
princurve                 NA                                                
prodlim                   "Rcpp"                                            
profileModel              NA                                                
progress                  NA                                                
proto                     NA                                                
PSCBS                     NA                                                
pscl                      NA                                                
psy                       NA                                                
psych                     NA                                                
purrr                     NA                                                
pwt                       NA                                                
pwt8                      NA                                                
pwt9                      NA                                                
qqman                     NA                                                
qtl                       NA                                                
quadprog                  NA                                                
quantmod                  NA                                                
quantreg                  NA                                                
qvcalc                    NA                                                
R.cache                   NA                                                
R.methodsS3               NA                                                
R.oo                      NA                                                
R.utils                   NA                                                
R6                        NA                                                
RandomFields              "RandomFieldsUtils"                               
RandomFieldsUtils         NA                                                
randomForest              NA                                                
RaschSampler              NA                                                
raster                    "Rcpp"                                            
Rcmdr                     NA                                                
RcmdrMisc                 NA                                                
RColorBrewer              NA                                                
Rcpp                      NA                                                
RcppArmadillo             "Rcpp"                                            
RcppEigen                 "Rcpp"                                            
RcppGSL                   "Rcpp"                                            
RcppRoll                  "Rcpp"                                            
RCurl                     NA                                                
readBrukerFlexData        NA                                                
readMzXmlData             NA                                                
readr                     "Rcpp"                                            
readstata13               "Rcpp"                                            
readxl                    "Rcpp"                                            
recipes                   NA                                                
registry                  NA                                                
relimp                    NA                                                
rematch                   NA                                                
rentrez                   NA                                                
repr                      NA                                                
reshape                   NA                                                
reshape2                  "Rcpp"                                            
rgenoud                   NA                                                
rggobi                    NA                                                
rgl                       NA                                                
Rglpk                     NA                                                
rglwidget                 NA                                                
RGtk2                     NA                                                
rhandsontable             NA                                                
RInside                   "Rcpp"                                            
ritis                     NA                                                
rjags                     NA                                                
rJava                     NA                                                
rjson                     NA                                                
RJSONIO                   NA                                                
rlang                     NA                                                
rlist                     NA                                                
RLumShiny                 NA                                                
Rmpi                      NA                                                
rms                       NA                                                
RMySQL                    NA                                                
rncl                      "Rcpp, progress"                                  
rneos                     NA                                                
RNetCDF                   NA                                                
RNeXML                    NA                                                
rngtools                  NA                                                
Rniftilib                 NA                                                
robustbase                NA                                                
ROCR                      NA                                                
RODBC                     NA                                                
rotl                      NA                                                
RPostgreSQL               NA                                                
rprojroot                 NA                                                
RProtoBuf                 "Rcpp"                                            
RQuantLib                 "Rcpp"                                            
rredlist                  NA                                                
RSclient                  NA                                                
rsdmx                     NA                                                
Rserve                    NA                                                
Rsolnp                    NA                                                
rsprng                    NA                                                
RSQLite                   "Rcpp, plogr"                                     
rstudioapi                NA                                                
Rsymphony                 NA                                                
RUnit                     NA                                                
sandwich                  NA                                                
scales                    "Rcpp"                                            
scatterD3                 NA                                                
scatterplot3d             NA                                                
segmented                 NA                                                
sem                       NA                                                
semTools                  NA                                                
sendmailR                 NA                                                
seqinr                    NA                                                
seroincidence             NA                                                
sfsmisc                   NA                                                
shape                     NA                                                
shiny                     NA                                                
shinyBS                   NA                                                
shinydashboard            NA                                                
shinyjs                   NA                                                
slam                      NA                                                
sm                        NA                                                
sn                        NA                                                
snow                      NA                                                
SnowballC                 NA                                                
solrium                   NA                                                
sourcetools               NA                                                
sp                        NA                                                
spam                      NA                                                
SparseM                   NA                                                
spatstat                  NA                                                
spatstat.data             NA                                                
spatstat.utils            NA                                                
spc                       NA                                                
spdep                     NA                                                
stabledist                NA                                                
statmod                   NA                                                
stringi                   NA                                                
stringr                   NA                                                
strucchange               NA                                                
surveillance              "Rcpp, polyCub"                                   
survey                    NA                                                
taxize                    NA                                                
tcltk2                    NA                                                
TeachingDemos             NA                                                
tensor                    NA                                                
testit                    NA                                                
testthat                  NA                                                
tgp                       NA                                                
TH.data                   NA                                                
tibble                    NA                                                
tidyr                     "Rcpp"                                            
tidyselect                "Rcpp (>= 0.12.0),"                               
tikzDevice                NA                                                
timeDate                  NA                                                
timeSeries                NA                                                
tkrplot                   NA                                                
tm                        "Rcpp"                                            
treescape                 "Rcpp"                                            
treespace                 "Rcpp"                                            
triebeard                 "Rcpp"                                            
truncdist                 NA                                                
truncnorm                 NA                                                
tseries                   NA                                                
TTR                       "xts"                                             
urca                      NA                                                
urltools                  "Rcpp"                                            
utf8                      NA                                                
uuid                      NA                                                
V8                        "Rcpp"                                            
vcd                       NA                                                
vcdExtra                  NA                                                
vegan                     NA                                                
VGAM                      NA                                                
vioplot                   NA                                                
viridis                   NA                                                
viridisLite               NA                                                
WDI                       NA                                                
webmockr                  NA                                                
whisker                   NA                                                
WikidataR                 NA                                                
WikipediR                 NA                                                
wikitaxa                  NA                                                
withr                     NA                                                
wordcloud                 "Rcpp"                                            
worrms                    NA                                                
XML                       NA                                                
xml2                      "Rcpp (>= 0.12.12)"                               
XMLRPC                    NA                                                
xtable                    NA                                                
xts                       "zoo"                                             
yaml                      NA                                                
Zelig                     NA                                                
zoo                       NA                                                
base                      NA                                                
boot                      NA                                                
class                     NA                                                
cluster                   NA                                                
codetools                 NA                                                
compiler                  NA                                                
datasets                  NA                                                
foreign                   NA                                                
graphics                  NA                                                
grDevices                 NA                                                
grid                      NA                                                
KernSmooth                NA                                                
lattice                   NA                                                
MASS                      NA                                                
Matrix                    NA                                                
methods                   NA                                                
mgcv                      NA                                                
nlme                      NA                                                
nnet                      NA                                                
parallel                  NA                                                
rpart                     NA                                                
spatial                   NA                                                
splines                   NA                                                
stats                     NA                                                
stats4                    NA                                                
survival                  NA                                                
tcltk                     NA                                                
tools                     NA                                                
utils                     NA                                                
                          Suggests                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
abind                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
acepack                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
adabag                    "mlbench"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
alabama                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
alluvial                  "devtools, testthat, reshape2, knitr, rmarkdown, dplyr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
askpass                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
assertthat                "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
backports                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
base64enc                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bgmfiles                  "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
BH                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bibliometrix              "knitr,\nrmarkdown,\ntestthat (>= 2.1.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
bibtex                    "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
BiocGenerics              "Biobase, S4Vectors, IRanges, GenomicRanges, AnnotationDbi,\noligoClasses, oligo, affyPLM, flowClust, affy, DESeq2, MSnbase,\nannotate, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                            
BiocInstaller             "devtools, RUnit, BiocGenerics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
bit                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bit64                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bitops                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
blob                      "covr, crayon, pillar (>= 1.2.1), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
bookdown                  "htmlwidgets, rstudioapi, miniUI, rsconnect (>= 0.4.3), servr\n(>= 0.13), shiny, testit (>= 0.9), tufte, webshot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
brew                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
broom                     "AER, akima, AUC, bbmle, betareg, biglm, binGroup, boot, brms,\nbtergm, car, caret, coda, covr, e1071, emmeans, ergm, gam (>=\n1.15), gamlss, gamlss.data, gamlss.dist, geepack, ggplot2,\nglmnet, gmm, Hmisc, irlba, joineRML, Kendall, knitr, ks,\nLahman, lavaan, lfe, lme4, lmodel2, lmtest, lsmeans, maps,\nmaptools, MASS, Matrix, mclust, mgcv, muhaz, multcomp, network,\nnnet, orcutt (>= 2.2), ordinal, plm, plyr, poLCA, psych,\nquantreg, rgeos, rmarkdown, robust, rsample, rstan, rstanarm,\nsp, speedglm, statnet.common, survey, survival, testthat,\ntseries, xergm, zoo"
callr                     "cliapp, covr, crayon, knitr, pingr, ps, rmarkdown, rprojroot,\nspelling, testthat, tibble, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
car                       "alr4, boot, coxme, leaps, lmtest, Matrix, MatrixModels, rgl\n(>= 0.93.960), sandwich, SparseM, survival, survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
carData                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
caTools                   "MASS, rpart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
cellranger                "covr, testthat (>= 1.0.0), knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
checkmate                 "R6, bit, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n0.11.0), tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                
classInt                  "spData (>= 0.2.6.2), units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
cli                       "covr, fansi, mockery, testthat, webshot, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
clipr                     "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
colorspace                "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson"                                                                                                                                                                                                                                                                                                                                                                                   
corrplot                  "knitr, RColorBrewer, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
cowplot                   "knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
crayon                    "mockery, rstudioapi, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
crosstalk                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
crul                      "testthat, fauxpas (>= 0.1.0), webmockr (>= 0.1.0), knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
csvread                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Cubist                    "mlbench, caret, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
curl                      "askpass, spelling, testthat (>= 1.0.0), knitr, jsonlite,\nrmarkdown, magrittr, httpuv (>= 1.4.4), webutils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
data.table                "bit64, curl, R.utils, knitr, xts, nanotime, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
data.tree                 "Formula, graphics, testthat, knitr, rmarkdown, ape, yaml,\nnetworkD3, jsonlite, igraph, treemap, party, partykit,\ndoParallel, foreach, htmlwidgets"                                                                                                                                                                                                                                                                                                                                                                                                                                     
DBI                       "blob, covr, hms, knitr, magrittr, rprojroot, rmarkdown,\nRSQLite (>= 1.1-2), testthat, xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
dendextend                "knitr, rmarkdown, testthat, seriation, colorspace, ape,\nprofdpm, microbenchmark, gplots, heatmaply, d3heatmap,\ndynamicTreeCut, pvclust, corrplot, DendSer, MASS, cluster, fpc,\ncirclize (>= 0.2.5), covr"                                                                                                                                                                                                                                                                                                                                                                             
DEoptim                   "foreach, iterators, colorspace, lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
DiagrammeR                "covr, DiagrammeRsvg, rsvg, knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
digest                    "tinytest, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
downloader                "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
dplyr                     "bit64, callr, covr, crayon (>= 1.3.4), DBI, dbplyr, dtplyr,\nggplot2, hms, knitr, Lahman, lubridate, MASS, mgcv,\nmicrobenchmark, nycflights13, rmarkdown, RMySQL, RPostgreSQL,\nRSQLite, testthat, withr, broom, purrr, readr"                                                                                                                                                                                                                                                                                                                                                          
DT                        "knitr (>= 1.8), rmarkdown, shiny (>= 1.1.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
dygraphs                  "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
e1071                     "cluster, mlbench, nnet, randomForest, rpart, SparseM, xtable,\nMatrix, MASS, slam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
ECOSolveR                 "knitr, rmarkdown, testthat, Matrix, covr, slam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
eha                       "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ellipsis                  "covr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
evaluate                  "testthat, lattice, ggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
expm                      "RColorBrewer, sfsmisc, Rmpfr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
extrafont                 "fontcm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
extrafontdb               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
factoextra                "ade4, ca, igraph, MASS, knitr, mclust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
FactoMineR                "missMDA,knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
fansi                     "unitizer, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
farver                    "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
fastmatch                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
FinCal                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fitdistrplus              "actuar, rgenoud, mc2d, gamlss.dist, knitr, knitcitations,\nggplot2, GeneralizedHyperbolic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
flexdashboard             "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
forcats                   "covr, ggplot2, testthat, readr, knitr, rmarkdown, dplyr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
foreign                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Formula                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fs                        "testthat, covr, pillar (>= 1.0.0), crayon, rmarkdown, knitr,\nwithr, spelling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
gbRd                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gdalUtils                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gdtools                   "htmltools, testthat, fontquiver (>= 0.2.0), curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
genalg                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
generics                  "covr, pkgload, testthat, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
geojsonR                  "testthat, covr, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
geosphere                 "methods, raster"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
gepaf                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ggforce                   "sessioninfo, concaveman, deldir, reshape2, units (>= 0.4-6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
ggmap                     "MASS, hexbin, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
ggplot2                   "covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, lattice,\nmapproj, maps, maptools, multcomp, munsell, nlme, profvis,\nquantreg, rgeos, rmarkdown, rpart, sf (>= 0.7-3), svglite (>=\n1.2.0.9001), testthat (>= 0.11.0), vdiffr (>= 0.3.0)"                                                                                                                                                                                                                                                                                                                                             
ggpubr                    "grDevices, knitr, RColorBrewer, gtable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
ggraph                    "network, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
ggrepel                   "knitr, rmarkdown, testthat, gridExtra, devtools, prettydoc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
ggsci                     "knitr, rmarkdown, gridExtra, reshape2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
ggsignif                  "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
gistr                     "git2r, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
globalOptTests            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
glue                      "testthat, covr, magrittr, crayon, knitr, rmarkdown, DBI,\nRSQLite, R.utils, forcats, microbenchmark, rprintf, stringr,\nggplot2, dplyr, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                           
graph                     "SparseM (>= 0.36), XML, RBGL, RUnit, cluster"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
gridExtra                 "ggplot2, egg, lattice, knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
gtable                    "covr, testthat, knitr, rmarkdown, ggplot2, profvis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
gWidgets                  "gWidgetstcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
gWidgetsRGtk2             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
haven                     "covr, fs, knitr, rmarkdown, testthat, pillar (>= 1.1.1), cli,\ncrayon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
highr                     "knitr, testit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
Hmisc                     "chron, rms, mice, tables, knitr, ff, ffbase, plotly (>=\n4.5.6), rlang"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
hms                       "crayon, lubridate, pillar (>= 1.1.0), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
htmlTable                 "testthat, XML, xtable, ztable, Hmisc, reshape, rmarkdown,\npander, chron, lubridate, tibble, tidyr (>= 0.7.2), dplyr (>=\n0.7.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
htmltools                 "markdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
htmlwidgets               "knitr (>= 1.8)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
httpcode                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
httpuv                    "testthat, callr, curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
httr                      "covr, httpuv, jpeg, knitr, png, readr, rmarkdown, testthat\n(>= 0.8.0), xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
hunspell                  "spelling, testthat, pdftools, janeaustenr, wordcloud2, knitr,\nstopwords, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
igraph                    "ape, digest, graph, igraphdata, rgl, scales, stats4, tcltk,\ntestthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
influenceR                "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
isoband                   "covr, ggplot2, knitr, lwgeom, magick, microbenchmark,\nrmarkdown, sf, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
ISOcodes                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
janeaustenr               "dplyr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
jpeg                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
jsonlite                  "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
kernlab                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
kknn                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
knitr                     "formatR, testit, digest, rgl (>= 0.95.1201), codetools,\nrmarkdown, htmlwidgets (>= 0.7), webshot, tikzDevice (>= 0.10),\ntinytex, reticulate (>= 1.4), JuliaCall (>= 0.11.1), magick,\npng, jpeg, gifski, xml2 (>= 1.2.0), httr, DBI (>= 0.4-1),\nshowtext, tibble, styler"                                                                                                                                                                                                                                                                                                             
labeling                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
labelled                  "testthat, knitr, rmarkdown, questionr, snakecase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
later                     "knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
latticeExtra              "maps, mapproj, deldir, tripack, zoo, MASS, quantreg, mgcv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
lazyeval                  "knitr, rmarkdown (>= 0.2.65), testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
leaflet                   "knitr, maps, sf, shiny, testit (>= 0.4), rgdal, rgeos, R6,\nRJSONIO, purrr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
leaflet.extras            "jsonlite, readr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
leafpop                   "lattice, leaflet (>= 2.0.0), sf, sp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
lme4                      "knitr, rmarkdown, PKPDmodels, MEMSS, testthat (>= 0.8.1),\nggplot2, mlmRev, optimx (>= 2013.8.6), gamm4, pbkrtest, HSAUR2,\nnumDeriv, car, dfoptim"                                                                                                                                                                                                                                                                                                                                                                                                                                      
lmtest                    "car, strucchange, sandwich, dynlm, stats4, survival, AER"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
lpSolve                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lpSolveAPI                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lsei                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lubridate                 "testthat, knitr, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
magrittr                  "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
maps                      "mapproj (>= 1.2-0), mapdata (>= 2.3.0), sp, maptools,\nrnaturalearth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
maptools                  "rgeos (>= 0.1-8), spatstat (>= 1.50), PBSmapping, maps,\nRColorBrewer, raster, polyclip, spatstat.utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
markdown                  "knitr, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
MatrixModels              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
matrixStats               "base64enc, ggplot2, knitr, microbenchmark, R.devices, R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
mc2d                      "fitdistrplus, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
mclust                    "knitr (>= 1.12), rmarkdown (>= 0.9), mix (>= 1.0), geometry\n(>= 0.3-6), MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
mco                       "scatterplot3d, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
mda                       "earth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
memoise                   "testthat, aws.s3, httr, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
mime                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
minqa                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mlogit                    "knitr, car, nnet, lattice, AER, ggplot2, texreg, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
modelr                    "compiler, covr, ggplot2, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
modeltools                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
munsell                   "ggplot2, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
nabor                     "testthat, RANN"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
network                   "sna, statnet.common, testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
networkD3                 "htmltools (>= 0.2.6), jsonlite,"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
nloptr                    "testthat (>= 0.8.1), knitr, rmarkdown, inline (>= 0.3.14)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
NLP                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
npsurv                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
opencage                  "testthat, lintr, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
openssl                   "testthat, digest, knitr, rmarkdown, jsonlite, jose"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
openxlsx                  "knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
optimx                    "knitr, rmarkdown, setRNG, BB, ucminf, minqa, dfoptim,\nlbfgsb3, lbfgs, subplex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
osmar                     "igraph, sp (>= 0.9-93)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
packrat                   "testthat (>= 0.7), devtools, httr, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
party                     "TH.data (>= 1.0-3), mlbench, colorspace, MASS, vcd, ipred,\nvarImp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
pbkrtest                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
PerformanceAnalytics      "dygraphs, Hmisc, MASS, quantmod, gamlss, gamlss.dist,\nrobustbase, quantreg, gplots, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
pillar                    "knitr, lubridate, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
pkgconfig                 "covr, testthat, disposables (>= 1.0.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
plogr                     "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
plotly                    "MASS, maps, ggthemes, GGally, testthat, knitr, devtools,\nshiny (>= 1.1.0), shinytest (>= 1.3.0), curl, rmarkdown,\nvdiffr, Cairo, broom, webshot, listviewer, dendextend, sf,\nmaptools, rgeos, png, IRdisplay, processx, plotlyGeoAssets,\nforcats"                                                                                                                                                                                                                                                                                                                                    
pls                       "MASS, parallel, Rmpi, testthat, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
plyr                      "abind, testthat, tcltk, foreach, doParallel, itertools,\niterators, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
png                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
polyclip                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
polynom                   "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
prettyunits               "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
processx                  "callr (>= 3.2.0), codetools, covr, crayon, curl, debugme,\nparallel, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
progress                  "Rcpp, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
promises                  "testthat, future, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
pryr                      "testthat (>= 0.8.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
ps                        "callr, covr, curl, pingr, processx (>= 3.1.0), R6, rlang,\ntestthat, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
purrr                     "covr, crayon, dplyr (>= 0.7.8), knitr, rmarkdown, testthat,\ntibble, tidyselect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
qcc                       "knitr (>= 1.12), rmarkdown (>= 0.9)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
qmap                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
qualityTools              ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
quantmod                  "DBI,RMySQL,RSQLite,timeSeries,XML,downloader,jsonlite(>= 1.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
quantreg                  "tripack, akima, MASS, survival, rgl, logspline, nor1mix,\nFormula, zoo, R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
questionr                 "memisc, testthat, roxygen2, dplyr, tidyr, janitor, forcats,\nknitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
R.methodsS3               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
R.oo                      "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
R.utils                   "digest (>= 0.6.10)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
R6                        "knitr, microbenchmark, pryr, testthat, ggplot2, scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
raster                    "rgdal (>= 0.9-1), rgeos (>= 0.3-8), ncdf4, igraph, tcltk,\nparallel, rasterVis, MASS, sf, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
rbgm                      "bgmfiles, covr, graticule, knitr, rgdal, rgeos, rmarkdown,\nroxygen2, scales, spdplyr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
rbokeh                    "testthat, data.table, lattice, lintr, roxygen2 (>= 5.0.0),\nknitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
rCarto                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RColorBrewer              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Rcpp                      "RUnit, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten\n(>= 0.1.2)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RcppArmadillo             "RUnit, Matrix, pkgKitten, reticulate, rmarkdown, knitr, pinp,\nslam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
RcppEigen                 "inline, RUnit, pkgKitten, microbenchmark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RcppParallel              "Rcpp, RUnit, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
RCurl                     "Rcompression, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
Rdpack                    "testthat, rstudioapi, rprojroot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
readr                     "curl, testthat, knitr, rmarkdown, stringi, covr, spelling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
readxl                    "covr, knitr, rmarkdown, rprojroot (>= 1.1), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rematch                   "covr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
reprex                    "covr, devtools, fortunes, knitr, miniUI, rprojroot,\nrstudioapi, shiny, styler (>= 1.0.2), testthat (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
reshape2                  "covr, lattice, testthat (>= 0.8.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
reticulate                "testthat, knitr, callr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
rgdal                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rgeos                     "maptools (>= 0.8-5), testthat, XML, maps, rgdal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
rgexf                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RgoogleMaps               "PBSmapping, maptools, sp, loa, RColorBrewer, leaflet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
RGraphics                 "agricolae, animation, CircStats, circular, cluster,\ncolorspace, diagram, dichromat, gplots, graph, gridBase,\ngridExtra, gridSVG, grImport, gWidgets, gWidgetsRGtk2, hexbin,\nHmisc, hyperdraw, hypergraph, igraph, iplots, ipred,\nlatticeExtra, mapdata, maps, maptools, MASS, misc3d, munsell,\nnetwork, openair, oz, party, pixmap, playwith, plotrix, pmg,\npng, quantmod, raster, Rcmdr, RColorBrewer, rgdal, rggobi, rgl,\nRGraphics, Rgraphviz, scatterplot3d, soiltexture, sp,\nSVGAnnotation, symbols, TeachingDemos, tools, vcd, vcdExtra,\nvenneuler, vrmlgen, XML"         
Rgraphviz                 "RUnit, BiocGenerics, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
rio                       "datasets, bit64, testthat, knitr, magrittr, clipr, csvy,\nfeather, fst, hexView, jsonlite, readODS (>= 1.6.4), readr,\nrmatio, xml2 (>= 1.2.0), yaml"                                                                                                                                                                                                                                                                                                                                                                                                                                    
RISmed                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RJSONIO                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rlang                     "covr, crayon, magrittr, methods, pillar, rmarkdown, testthat\n(>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
rmarkdown                 "shiny (>= 0.11), tufte, testthat, digest, dygraphs, tibble,\nfs, pkgdown, callr (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
rmdformats                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rminer                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI                       "numDeriv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
ROI.models.globalOptTests "Rglpk (>= 0.6-2)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.models.miplib         NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.models.netlib         "Rglpk (>= 0.6-2)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.alabama        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.deoptim        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.ecos           NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.glpk           NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.ipop           NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ROI.plugin.lpsolve        "slam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ROI.plugin.msbinlp        "ROI.plugin.glpk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
ROI.plugin.neos           "slam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
ROI.plugin.optimx         "BB, ucminf, minqa, dfoptim, lbfgsb3, lbfgs, subplex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
Rook                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rprojroot                 "testthat, mockr, knitr, withr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RQDA                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rriskDistributions        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rsconnect                 "RCurl, callr, httpuv, knitr, plumber (>= 0.3.2), reticulate,\nrmarkdown (>= 1.1), shiny, sourcetools, testthat, xtable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
rscopus                   "xml2, rvest, graphics, testthat, jpeg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
RSpectra                  "knitr, rmarkdown, prettydoc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
RSQLite                   "DBItest, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
rstudioapi                "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
RTriangle                 "testthat, geometry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
Rttf2pt1                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rtweet                    "ggplot2, knitr, magick, openssl, readr, rmarkdown, testthat\n(>= 2.1.0), webshot, covr, igraph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
rvest                     "covr, knitr, png, rmarkdown, spelling, stringi (>= 0.3.1),\ntestthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sandwich                  "AER, car, geepack, lattice, lmtest, MASS, multiwayvcov,\nparallel, pcse, plm, pscl, scatterplot3d, stats4, strucchange,\nsurvival"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
satellite                 "devtools, knitr, rgdal, testthat, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
scales                    "dichromat, bit64, covr, hms, testthat (>= 2.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
scatterplot3d             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
selectr                   "testthat, XML, xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
sf                        "blob,\ncovr,\ndplyr (>= 0.8-3),\nggplot2,\nknitr,\nlwgeom (>= 0.1-5),\nmaps,\nmaptools,\nmapview,\nmicrobenchmark,\nodbc,\npillar,\npool,\nraster,\nrgdal,\nrgeos,\nrlang,\nrmarkdown,\nRPostgres (>= 1.1.0),\nRPostgreSQL,\nRSQLite,\nsp (>= 1.2-4),\nspatstat,\nstars (>= 0.2-0),\ntestthat,\ntibble (>= 1.4.1),\ntidyr (>= 0.7-2),\ntidyselect,\ntmap (>= 2.0)"                                                                                                                                                                                                                       
shiny                     "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2, reactlog (>= 1.0.0), magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
shinycssloaders           NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
shinythemes               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
simmer                    "simmer.plot, parallel, testthat, knitr, rmarkdown, rticles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
simmer.plot               "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
SixSigma                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
SnowballC                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
sourcetools               "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
sp                        "RColorBrewer, rgdal (>= 0.8-7), rgeos (>= 0.3-13), gstat,\nmaptools, deldir"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
spacyr                    "dplyr, knitr, lintr, quanteda, R.rsp, rmarkdown, spelling,\ntestthat, tidytext, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
SparseM                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
spData                    "foreign, maptools, raster, rgdal, sf, sp, spDataLarge (>=\n0.3.0), spdep"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
spDataLarge               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
statmod                   "MASS, tweedie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
stopwords                 "covr, lintr, quanteda, spelling, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
stringdist                "tinytest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
stringi                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
stringr                   "covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
strucchange               "stats4, car, dynlm, e1071, foreach, lmtest, mvtnorm, tseries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
survival                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
svglite                   "htmltools, testthat, xml2 (>= 1.0.0), covr, fontquiver (>=\n0.2.0), knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sys                       "unix (>= 1.4), spelling, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
TH.data                   "dplyr, gdata, plyr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
tibble                    "bench, covr, dplyr, htmltools, import, knitr, mockr,\nnycflights13, rmarkdown, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
tictoc                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tidyr                     "covr, gapminder, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
tidyselect                "covr, dplyr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
tidytext                  "readr, tidyr, XML, tm, quanteda, knitr, rmarkdown, ggplot2,\nreshape2, wordcloud, topicmodels, NLP, scales, gutenbergr,\ntestthat, vdiffr, mallet, stm, data.table, broom, textdata"                                                                                                                                                                                                                                                                                                                                                                                                     
tidyverse                 "feather (>= 0.3.1), knitr (>= 1.17), rmarkdown (>= 1.7.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
timevis                   "knitr (>= 1.7), testthat (>= 0.9.1), tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
tinytex                   "testit, rstudioapi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
tm                        "antiword, filehash, methods, pdftools, Rcampdf, Rgraphviz,\nRpoppler, SnowballC, testthat, tm.lexicon.GeneralInquirer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
tokenizers                "covr, knitr, rmarkdown, stopwords (>= 0.9.0), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
triebeard                 "knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
tweenr                    "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
twitteR                   "RSQLite, RMySQL"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
units                     "udunits2, NISTunits, measurements, xml2, tibble, pillar (>=\n1.3.0), knitr, testthat, ggforce, rmarkdown, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
urltools                  "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
utf8                      "knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
vctrs                     "bit64, covr, crayon, generics, knitr, pillar (>= 1.4.1),\npkgdown, rmarkdown, testthat, tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
viridis                   "hexbin (>= 1.27.0), scales, MASS, knitr, dichromat,\ncolorspace, rasterVis, httr, mapproj, vdiffr, svglite (>=\n1.2.0), testthat, covr, rmarkdown, rgdal"                                                                                                                                                                                                                                                                                                                                                                                                                                
viridisLite               "hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
visNetwork                "knitr, rmarkdown, webshot, igraph, rpart, shiny,\nshinyWidgets, colourpicker, sparkline, ggraph, flashClust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
webshot                   "httpuv, knitr, rmarkdown, shiny"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
widyr                     "ggraph, igraph, gapminder, testthat, covr, knitr,\ntopicmodels, janeaustenr, rmarkdown, unvotes (>= 0.2.0),\ncountrycode, fuzzyjoin, ggplot2, maps, irlba"                                                                                                                                                                                                                                                                                                                                                                                                                               
withr                     "testthat, covr, lattice, DBI, RSQLite, methods, knitr,\nrmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
wordcloud                 "tm (>= 0.6), slam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
xfun                      "testit, parallel, rstudioapi, tinytex, mime, markdown, knitr,\nhtmltools, base64enc, remotes, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
xgboost                   "knitr, rmarkdown, ggplot2 (>= 1.0.1), DiagrammeR (>= 0.9.0),\nCkmeans.1d.dp (>= 3.3.1), vcd (>= 1.3), testthat, lintr, igraph\n(>= 1.0.1), jsonlite, float"                                                                                                                                                                                                                                                                                                                                                                                                                              
XML                       "bitops, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
xmlrpc2                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
xtable                    "knitr, plm, zoo, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
yaml                      "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
zeallot                   "testthat, knitr, rmarkdown, purrr, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
zip                       "covr, processx, R6, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
zoo                       "coda, chron, DAAG, fts, ggplot2, mondate, scales,\nstrucchange, timeDate, timeSeries, tis, tseries, xts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
eha                       "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mc2d                      "fitdistrplus, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
rriskDistributions        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
survival                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
abind                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
acepack                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
ade4                      "ade4TkGUI, adegraphics, adephylo, ape, CircStats, deldir,\nlattice, pixmap, sp, spdep, splancs, waveslim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
adegenet                  "pegas, hierfstat, akima, maps, splancs, tripack, testthat,\npoppr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
adegraphics               "Guerry, knitr, maptools, pixmap, rgdal, rmarkdown, spData (>=\n0.2.6.2), spdep, splancs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
adephylo                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
AER                       "boot, dynlm, effects, fGarch, forecast, foreign, ineq,\nKernSmooth, lattice, longmemo, MASS, mlogit, nlme, nnet, np,\nplm, pscl, quantreg, rgl, ROCR, rugarch, sampleSelection,\nscatterplot3d, strucchange, systemfit, truncreg, tseries, urca,\nvars"                                                                                                                                                                                                                                                                                                                                  
afex                      "xtable, parallel, plyr, optimx, nloptr, knitr, rmarkdown,\nlattice, latticeExtra, multcomp, testthat, mlmRev, dplyr,\ntidyr, dfoptim, Matrix, psych"                                                                                                                                                                                                                                                                                                                                                                                                                                     
Amelia                    "tcltk, Zelig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
AMORE                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
animation                 "MASS, class, testit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
ape                       "gee, expm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
arm                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
aroma.light               "princurve (>= 1.1-12)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
assertthat                "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
backports                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
base64enc                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
BatchJobs                 "MASS, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
BayesFactor               "doMC, foreach, testthat, knitr, markdown, arm, lme4, xtable,\nlanguageR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
bayesm                    "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
BBmisc                    "testthat, microbenchmark, codetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
bbmle                     "emdbook, rms, ggplot2, RUnit, MuMIn, AICcmodavg, Hmisc,\noptimx (>= 2013.8.6), knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
beeswarm                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
BiasedUrn                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bindr                     "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
bindrcpp                  "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
bio3d                     "XML, RCurl, lattice, ncdf4, igraph, bigmemory, knitr,\ntestthat (>= 0.9.1), httr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bit                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bit64                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bitops                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
blob                      "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
blockmodeling             "sna, Matrix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
BMS                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
bold                      "roxygen2 (>= 6.0.1), sangerseqR, knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
BoolNet                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
BradleyTerry2             "prefmod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
brew                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
brglm                     "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
broom                     "knitr, boot, survival, gam, glmnet, lfe, Lahman, MASS, sp,\nmaps, maptools, multcomp, testthat, lme4, zoo, lmtest, plm,\nbiglm, ggplot2, nnet, geepack, AUC, ergm, network,\nstatnet.common, xergm, btergm, binGroup, Hmisc, bbmle, gamlss,\nrstan, rstanarm, brms, coda, gmm, Matrix, ks, purrr, orcutt,\nmgcv, lmodel2, poLCA, mclust, covr, lsmeans, emmeans, betareg,\nrobust, akima, AER, muhaz, speedglm, tibble"                                                                                                                                                                  
ca                        "rgl (>= 0.64-10), vcd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
Cairo                     "png"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
cairoDevice               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
calibrate                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
car                       "alr4, boot, coxme, leaps, lme4, lmtest, Matrix, MatrixModels,\nnlme, rgl (>= 0.93.960), sandwich, SparseM, survival, survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                             
carData                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
caret                     "BradleyTerry2, e1071, earth (>= 2.2-3), fastICA, gam, ipred,\nkernlab, klaR, MASS, ellipse, mda, mgcv, mlbench, MLmetrics,\nnnet, party (>= 0.9-99992), pls, pROC, proxy, randomForest,\nRANN, spls, subselect, pamr, superpc, Cubist, testthat (>=\n0.9.1)"                                                                                                                                                                                                                                                                                                                             
caTools                   "MASS, rpart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
cellranger                "covr, testthat (>= 1.0.0), knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
checkmate                 "R6, bit, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n0.11.0), tibble"                                                                                                                                                                                                                                                                                                                                                                                                                                                
chron                     "scales, ggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
cli                       "covr, mockery, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
clusterGeneration         NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
cmprsk                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
coda                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
coin                      "parallel, xtable, e1071, vcd, TH.data (>= 1.0-7), libcoin (>=\n0.9-0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
colorspace                "datasets, stats, utils, KernSmooth, MASS, kernlab, mvtnorm,\nvcd, dichromat, tcltk, shiny, shinyjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
combinat                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
contfrac                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
conting                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
corpcor                   ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
crayon                    "mockery, rstudioapi, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
crosstalk                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
crul                      "testthat, fauxpas (>= 0.1.0), webmockr (>= 0.1.0), knitr,\njsonlite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
cubature                  "testthat, knitr, mvtnorm, R2Cuba, benchr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
curl                      "testthat (>= 1.0.0), knitr, jsonlite, rmarkdown, magrittr,\nhttpuv, webutils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
CVST                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
data.table                "bit64, knitr, nanotime, chron, ggplot2 (>= 0.9.0), plyr,\nreshape, reshape2, testthat (>= 0.4), hexbin, fastmatch, nlme,\nxts, gdata, GenomicRanges, caret, curl, zoo, plm, rmarkdown,\nparallel"                                                                                                                                                                                                                                                                                                                                                                                        
date                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
DBI                       "blob, covr, hms, knitr, magrittr, rprojroot, rmarkdown,\nRSQLite (>= 1.1-2), testthat, xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
DBItest                   "knitr, lintr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
dbplyr                    "bit64, covr, knitr, Lahman (>= 5.0.0), nycflights13 (>=\n0.2.2), rmarkdown, RMariaDB (>= 1.0.2), RMySQL (>= 0.10.11),\nRPostgreSQL (>= 0.4.1), RSQLite (>= 2.0), testthat (>= 2.0.0)"                                                                                                                                                                                                                                                                                                                                                                                                    
ddalpha                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
deal                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
deldir                    "polyclip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
DEoptimR                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
desc                      "covr, testthat, whoami, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
deSolve                   "scatterplot3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
devtools                  "curl (>= 0.9), crayon, testthat (>= 1.0.2), BiocInstaller,\nRcpp (>= 0.10.0), MASS, rmarkdown, knitr, hunspell (>= 2.0),\nlintr (>= 0.2.1), bitops, roxygen2 (>= 5.0.0), evaluate,\nrversions, covr, gmailr (> 0.7.0)"                                                                                                                                                                                                                                                                                                                                                                   
DiagnosisMed              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
dichromat                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
digest                    "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
dimRed                    "MASS, Matrix, RANN, RSpectra, Rtsne, coRanking, diffusionMap,\nenergy, fastICA, ggplot2, graphics, igraph, kernlab, lle, loe,\noptimx, pcaPP, rgl, scales, scatterplot3d, stats, testthat,\ntidyr, vegan"                                                                                                                                                                                                                                                                                                                                                                                
distory                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
DNAcopy                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
doMC                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
doParallel                "caret, mlbench, rpart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
DoseFinding               "numDeriv, Rsolnp, quadprog, parallel, multcomp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
doSNOW                    "compiler, RUnit, caret, mlbench, rpart, parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
dotCall64                 "microbenchmark, OpenMPController, RColorBrewer, roxygen2,\nspam, testthat,"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
downloader                "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
dplyr                     "bit64, covr, dbplyr, dtplyr, DBI, ggplot2, hms, knitr, Lahman\n(>= 3.0-1), mgcv, microbenchmark, nycflights13, rmarkdown,\nRMySQL, RPostgreSQL, RSQLite, testthat, withr"                                                                                                                                                                                                                                                                                                                                                                                                                
DRR                       "knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
DT                        "jsonlite (>= 0.9.16), knitr (>= 1.8), rmarkdown, shiny (>=\n0.12.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
dynlm                     "datasets, sandwich, strucchange, TSA"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
e1071                     "cluster, mlbench, nnet, randomForest, rpart, SparseM, xtable,\nMatrix, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
eco                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ecodist                   "knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
effects                   "pbkrtest (>= 0.4-4), nlme, MASS, poLCA, heplots, splines,\nordinal, car, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
ellipse                   "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
elliptic                  "emulator, calibrator"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
energy                    "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
Epi                       "mstate, nlme, lme4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
epibasix                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
epicalc                   ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
epiR                      "MASS (>= 3.1-20)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
epitools                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
eRm                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
estimability              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
etm                       "ggplot2, kmi, geepack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
evaluate                  "testthat, lattice, ggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
evd                       "akima"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
expm                      "RColorBrewer, sfsmisc, Rmpfr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
FactoMineR                "missMDA,knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
fail                      "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
fAsianOptions             "methods, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
fAssets                   "methods, mnormt, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
fastcluster               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fastICA                   "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
fastmatch                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fBasics                   "akima, RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
fBonds                    "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
fCopulae                  "methods, RUnit, tcltk, mvtnorm, sn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
fExoticOptions            "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
fExtremes                 "RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fGarch                    "RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fields                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
filehash                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fImport                   "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
fitbitScraper             "knitr, rmarkdown, ggplot2, ggthemes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
fitcoach                  "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
flashClust                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fMultivar                 "spatial, RUnit, tcltk, akima"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fNonlinear                "RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
fOptions                  "RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
forcats                   "covr, ggplot2, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
foreach                   "randomForest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
formatR                   "codetools, shiny, testit, rmarkdown, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
Formula                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
fPortfolio                "Rsocp, Rnlminb2, Rdonlp2, Rsymphony, dplR, bcp, fGarch,\nmvoutlier"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
fRegression               "MASS, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
fTrading                  "methods, RUnit, tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
fUnitRoots                "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
futile.logger             "testthat, jsonlite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
futile.options            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
future                    "R.rsp, markdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
g.data                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gam                       "akima"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
gbm                       "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
gdata                     "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
geepack                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
GenABEL                   "qvalue, genetics, haplo.stats, DatABEL (>= 0.9-0), hglm,\nMetABEL, PredictABEL, VariABEL, bigRR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
GenABEL.data              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
genetics                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
getopt                    "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
ggplot2                   "covr, ggplot2movies, hexbin, Hmisc, lattice, mapproj, maps,\nmaptools, mgcv, multcomp, nlme, testthat (>= 0.11.0), quantreg,\nknitr, rpart, rmarkdown, svglite"                                                                                                                                                                                                                                                                                                                                                                                                                          
ggvis                     "MASS, mgcv, lubridate, testthat (>= 0.8.1), knitr (>= 1.6),\nrmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
git2r                     "getPass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
glmnet                    "survival, knitr, lars"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
globals                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
glue                      "testthat, covr, magrittr, crayon, knitr, rmarkdown, DBI,\nRSQLite, R.utils, forcats, microbenchmark, rprintf, stringr,\nggplot2"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
gmaps                     "mapdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
gmodels                   "gplots, gtools, Matrix, nlme, lme4 (>= 0.999999-0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
gnm                       "vcdExtra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
goftest                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
googleVis                 "shiny (>= 0.4.0), httpuv (>= 1.2.0), knitr (>= 1.5), wbstats,\ndata.table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
gower                     "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
gplots                    "grid, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
gregmisc                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gridBase                  "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
gridExtra                 "ggplot2, egg, lattice, knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
gsl                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gss                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
gtable                    "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
gtools                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Guerry                    "sp, shapefiles, spdep, ade4, maptools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
haplo.stats               "R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
haven                     "covr, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
hdf5                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
hexbin                    "marray, affy, Biobase, limma"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
highr                     "knitr, testit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
Hmisc                     "chron, rms, mice, tables, knitr, ff, ffbase, plotly (>=\n4.5.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
hms                       "crayon, lubridate, pillar, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
htmlTable                 "testthat, XML, xtable, ztable, Hmisc, reshape, rmarkdown,\npander, chron, lubridate, tibble, tidyr (>= 0.7.2), dplyr (>=\n0.7.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
htmltools                 "markdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
htmlwidgets               "knitr (>= 1.8)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
httpcode                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
httpuv                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
httr                      "httpuv, jpeg, knitr, png, testthat (>= 0.8.0), readr, xml2,\nrmarkdown, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
hwriter                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
hypergeo                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
igraph                    "ape, graph, igraphdata, NMF, rgl, scales, stats4, tcltk,\ntestthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
inline                    "Rcpp (>= 0.11.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
int64                     "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
ipred                     "mvtnorm, mlbench, TH.data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
irlba                     "PMA"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
ISOcodes                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ISOweek                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
iterators                 "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
its                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
jsonlite                  "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
kernlab                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
knitr                     "formatR, testit, rgl (>= 0.95.1201), codetools, rmarkdown,\nhtmlwidgets (>= 0.7), webshot, tikzDevice (>= 0.10), png, jpeg,\nXML, RCurl, DBI (>= 0.4-1), tibble"                                                                                                                                                                                                                                                                                                                                                                                                                         
labeling                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lambda.r                  "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
latticeExtra              "maps, mapproj, deldir, tripack, zoo, MASS, quantreg, mgcv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
lava                      "KernSmooth, Matrix, Rgraphviz, ascii, data.table, fields,\nforeach, geepack, gof (>= 0.9), graph, igraph (>= 0.6),\nlava.tobit, lme4, mets (>= 1.1), optimx, quantreg, rgl,\ntestthat (>= 0.11), visNetwork, zoo"                                                                                                                                                                                                                                                                                                                                                                        
lavaan                    "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
lazyeval                  "knitr, rmarkdown (>= 0.2.65), testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
leaps                     "biglm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
LearnBayes                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lexRankr                  "covr, testthat, R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
lhs                       "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
listenv                   "R.utils, R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
littler                   "knitr, docopt, rcmdcheck"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
lme4                      "knitr, boot, PKPDmodels, MEMSS, testthat (>= 0.8.1), ggplot2,\nmlmRev, optimx (>= 2013.8.6), gamm4, pbkrtest, HSAUR2, numDeriv"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
lmerTest                  "pbkrtest, nlme, estimability"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
lmtest                    "car, strucchange, sandwich, dynlm, stats4, survival, AER"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
logspline                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lpSolve                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
lsmeans                   "car, lattice, MCMCpack, mediation, multcompView, ordinal,\npbkrtest (>= 0.4-1), CARBayes, coxme, gee, geepack, glmmADMB,\nlme4, lmerTest (>= 2.0.32), MASS, MCMCglmm, nnet, pscl, rsm,\nrstan, rstanarm, survival"                                                                                                                                                                                                                                                                                                                                                                       
lubridate                 "testthat, knitr, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
Luminescence              "RLumShiny (>= 0.1.1), RLumModel (>= 0.1.2), plotly (>=\n4.5.6), rmarkdown (>= 1.3), rjags (>= 4-6), coda (>= 0.19-1),\npander (>= 0.6.0), rstudioapi (>= 0.6), testthat (>= 1.0.2),\ndevtools (>= 1.12.0)"                                                                                                                                                                                                                                                                                                                                                                               
magrittr                  "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
MALDIquant                "knitr, testthat (>= 0.8)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
MALDIquantForeign         "knitr, testthat (>= 0.8), RNetCDF (>= 1.6.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
mapdata                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mapproj                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
maps                      "mapproj (>= 1.2-0), mapdata (>= 2.3.0), sp, maptools,\nrnaturalearth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
maptools                  "rgeos (>= 0.1-8), spatstat (>= 1.18), PBSmapping, maps,\nRColorBrewer, raster, polyclip, spatstat.utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
maptree                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
markdown                  "knitr, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
Matching                  "parallel, rgenoud (>= 2.12), rbounds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
MatchIt                   "cem, nnet, optmatch, rpart, mgcv, WhatIf, R.rsp, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
matrixcalc                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
MatrixModels              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
matrixStats               "base64enc, ggplot2, knitr, microbenchmark, R.devices, R.rsp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
maxLik                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mclust                    "knitr (>= 1.12), rmarkdown (>= 0.9), mix (>= 1.0), geometry\n(>= 0.3-6), MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
mcmc                      "xtable, Iso"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
MCMCpack                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
medAdherence              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
memoise                   "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
mFilter                   "tseries, pastecs, locfit, tseriesChaos, RTisean, tsDyn,\nforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
mi                        "betareg, lattice, knitr, MASS, nnet, parallel, sn, survival,\ntruncnorm, foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mime                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
miniUI                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
minpack.lm                "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
minqa                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
misc3d                    "rgl, tkrplot, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
miscTools                 "Ecdat (>= 0.1-5)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mixtools                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mlbench                   "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
mlmRev                    "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
mnormt                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
MNP                       "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
mockery                   "knitr, rmarkdown (>= 1.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
ModelMetrics              "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
modeltools                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
msm                       "mstate,minqa,doParallel,foreach,numDeriv,testthat,flexsurv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
multcomp                  "lme4 (>= 0.999375-16), nlme, robustbase, coin, MASS, car,\nforeign, xtable, lmtest, coxme (>= 2.2-1), SimComp, ISwR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
multicore                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
munsell                   "ggplot2, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
mvnormtest                NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
mvtnorm                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
natserv                   "roxygen2 (>= 5.0.1), testthat, covr, ggplot2, maps, mapproj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
ncdf4                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
nleqslv                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
nloptr                    "testthat (>= 0.8.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
NLP                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
NMF                       "RcppOctave (>= 0.11), fastICA, doMPI, bigmemory (>= 4.2),\nsynchronicity, corpcor, xtable, devtools, knitr, bibtex, RUnit,\nmail, Biobase"                                                                                                                                                                                                                                                                                                                                                                                                                                               
nnls                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
nortest                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
numDeriv                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
nws                       "sprngNWS, Revobase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
openssl                   "testthat, digest, knitr, rmarkdown, jsonlite, jose"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
optparse                  "knitr (>= 1.15.19), stringr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
pbapply                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
pbdZMQ                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
pbivnorm                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
pbkrtest                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
permute                   "vegan (>= 2.0-0), testthat (>= 0.5), parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
phangorn                  "testthat, seqinr, xtable, rgl, knitr, rmarkdown, Biostrings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
pheatmap                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
phylobase                 "MASS, testthat (>= 0.8.1), knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
phytools                  "geiger, rgl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
pillar                    "knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
pkgconfig                 "covr, testthat, disposables (>= 1.0.3)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
pkgKitten                 "whoami (>= 1.1.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
pkgmaker                  "devtools (>= 0.8), bibtex, RUnit, testthat, knitr,\nReportingTools, hwriter, argparse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
plogr                     "Rcpp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
plotly                    "MASS, maps, ggthemes, GGally, testthat, knitr, devtools,\nshiny (>= 0.14), curl, rmarkdown, Rserve, RSclient, Cairo,\nbroom, webshot, listviewer, dendextend, sf, RSelenium, png,\nIRdisplay"                                                                                                                                                                                                                                                                                                                                                                                            
plotrix                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
plyr                      "abind, testthat, tcltk, foreach, doParallel, itertools,\niterators, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
png                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
polspline                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
polyclip                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
polyCub                   "spatstat, lattice, testthat, mvtnorm, statmod, rgeos, gpclib"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
praise                    "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
prettyunits               "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
princurve                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
prodlim                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
profileModel              "MASS, gnm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
progress                  "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
proto                     "testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
PSCBS                     "Hmisc (>= 3.16-0),\nR.rsp (>= 0.41.0),\nR.devices (>= 2.15.1),\nggplot2 (>= 2.2.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
pscl                      "lattice, MCMCpack, car, lmtest, sandwich, zoo, coda, vcd,\nmvtnorm, mgcv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
psy                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
psych                     "GPArotation, lavaan, sem, lme4,Rcsdp, graph, Rgraphviz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
purrr                     "covr, dplyr (>= 0.4.3), knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
pwt                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
pwt8                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
pwt9                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
qqman                     "knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
qtl                       "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
quadprog                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
quantmod                  "DBI,RMySQL,RSQLite,timeSeries,XML,downloader,jsonlite(>= 1.1)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
quantreg                  "tripack, akima, MASS, survival, rgl, logspline, nor1mix,\nFormula, zoo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
qvcalc                    "relimp, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
R.cache                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
R.methodsS3               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
R.oo                      "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
R.utils                   "digest (>= 0.6.10)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
R6                        "knitr, microbenchmark, pryr, testthat, ggplot2, scales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
RandomFields              "colorspace, RColorBrewer, mvtnorm, raster, tcltk2, tcltk,\ntkrplot, spam, tools, geoR, minqa, soma, optimx, nloptr, pso,\nGenSA"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
RandomFieldsUtils         NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
randomForest              "RColorBrewer, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
RaschSampler              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
raster                    "rgdal (>= 0.9-1), rgeos (>= 0.3-8), ncdf4, igraph, tcltk,\nparallel, rasterVis, MASS, sf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Rcmdr                     "aplpack, boot, colorspace, e1071, foreign, grid, Hmisc,\nknitr, lattice, leaps, lmtest, markdown, MASS, mgcv, multcomp\n(>= 0.991-2), nlme, nnet, nortest, readxl, rgl (>= 0.96.0),\nrmarkdown (>= 0.9.5), sem (>= 2.1-1)"                                                                                                                                                                                                                                                                                                                                                               
RcmdrMisc                 "boot, datasets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
RColorBrewer              NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Rcpp                      "RUnit, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten\n(>= 0.1.2)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RcppArmadillo             "RUnit, Matrix, pkgKitten, reticulate, rmarkdown, knitr, pinp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
RcppEigen                 "inline, RUnit, pkgKitten"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RcppGSL                   "RUnit, inline, knitr, rmarkdown, pinp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
RcppRoll                  "zoo, microbenchmark, testthat, RcppArmadillo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
RCurl                     "Rcompression, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
readBrukerFlexData        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
readMzXmlData             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
readr                     "curl, testthat, knitr, rmarkdown, stringi, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
readstata13               "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
readxl                    "covr, knitr, rmarkdown, rprojroot (>= 1.1), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
recipes                   "testthat, rpart, kernlab, fastICA, RANN, igraph, knitr,\ncaret, ggplot2, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
registry                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
relimp                    "tcltk, nnet, MASS, Rcmdr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
rematch                   "covr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
rentrez                   "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
repr                      "methods, highr, Cairo, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
reshape                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
reshape2                  "testthat (>= 0.8.0), lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
rgenoud                   "parallel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
rggobi                    "reshape, nlme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
rgl                       "MASS, rmarkdown, deldir, orientlib, lattice, misc3d,\nrstudioapi, magick"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Rglpk                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rglwidget                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RGtk2                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rhandsontable             "knitr, rmarkdown, shiny (>= 0.13), miniUI (>= 0.1.1),\nrstudioapi (>= 0.6), htmltools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
RInside                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
ritis                     "roxygen2 (>= 6.0.1), testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
rjags                     "tcltk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
rJava                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rjson                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RJSONIO                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rlang                     "crayon, knitr, methods, pillar, rmarkdown (>= 0.2.65),\ntestthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
rlist                     "testthat, stringdist, pipeR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
RLumShiny                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
Rmpi                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rms                       "boot, tcltk, plotly (>= 4.5.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
RMySQL                    "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
rncl                      "testthat, ape"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
rneos                     "XMLRPC"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
RNetCDF                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RNeXML                    "rrdf (>= 2.0.2), geiger (>= 2.0), phytools (>= 0.3.93), knitr\n(>= 1.5), rfigshare (>= 0.3.0), knitcitations (>= 1.0.1),\ntestthat (>= 0.10.0), phylobase (>= 0.6.8), rmarkdown (>=\n0.3.3), Sxslt (>= 0.91)"                                                                                                                                                                                                                                                                                                                                                                            
rngtools                  "parallel, RUnit, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
Rniftilib                 ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
robustbase                "grid, MASS, lattice, boot, cluster, Matrix, robust,\nfit.models, MPV, xtable, ggplot2, GGally, RColorBrewer,\nreshape2, sfsmisc, catdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                
ROCR                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RODBC                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rotl                      "knitr (>= 1.12), rmarkdown (>= 0.7), testthat, RNeXML,\nphylobase, MCMCglmm, fulltext (>= 0.1.6), readxl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
RPostgreSQL               NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rprojroot                 "testthat, knitr, withr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
RProtoBuf                 "RUnit, rmarkdown, knitr, pinp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
RQuantLib                 "rgl, RUnit, shiny"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
rredlist                  "roxygen2 (>= 6.0.1), testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
RSclient                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rsdmx                     "testthat, knitr, roxygen2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
Rserve                    "RSclient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Rsolnp                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
rsprng                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RSQLite                   "DBItest, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
rstudioapi                "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
Rsymphony                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
RUnit                     "XML (>= 3.1.0)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
sandwich                  "AER, car, geepack, lattice, lmtest, MASS, multiwayvcov, pcse,\nplm, pscl, scatterplot3d, stats4, strucchange, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
scales                    "testthat (>= 0.8), bit64, covr, hms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
scatterD3                 "knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
scatterplot3d             NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
segmented                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
sem                       "polycor, MBESS, DiagrammeR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
semTools                  "MASS, parallel, Amelia, mice, foreign, OpenMx(>= 2.0.0),\nGPArotation, mnormt, boot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
sendmailR                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
seqinr                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
seroincidence             "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
sfsmisc                   "datasets, tcltk, cluster, lattice, MASS, Matrix, nlme, lokern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
shape                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
shiny                     "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2, magrittr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
shinyBS                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
shinydashboard            NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
shinyjs                   "knitr (>= 1.7), rmarkdown, rstudioapi (>= 0.5), shinyAce,\ntestthat (>= 0.9.1), V8 (>= 0.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
slam                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
sm                        "rpanel, tkrplot, rgl, misc3d, akima, gam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
sn                        NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
snow                      "Rmpi,rlecuyer,nws"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
SnowballC                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
solrium                   "roxygen2 (>= 6.0.1), testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
sourcetools               "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
sp                        "RColorBrewer, rgdal (>= 0.8-7), rgeos (>= 0.3-13), gstat,\nmaptools, deldir"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
spam                      "spam64, fields, SparseM, Matrix, testthat, R.rsp, truncdist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
SparseM                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
spatstat                  "sm, maptools, gsl, locfit, spatial, rpanel, tkrplot,\nRandomFields (>= 3.1.24.1), RandomFieldsUtils(>= 0.3.3.1),\nfftwtools (>= 0.9-8)"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
spatstat.data             "spatstat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
spatstat.utils            "spatstat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
spc                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
spdep                     "parallel, spam(>= 0.13-1), RANN, rgeos, RColorBrewer,\nlattice, xtable, maptools (>= 0.5-4), foreign, igraph, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
stabledist                "Matrix, fBasics, FMStable, RUnit, Rmpfr, sfsmisc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
statmod                   "MASS, tweedie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
stringi                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
stringr                   "covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
strucchange               "stats4, car, dynlm, e1071, foreach, lmtest, mvtnorm, tseries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
surveillance              "parallel, grid, xts, gridExtra, lattice, colorspace, scales,\nanimation, rmapshaper, msm, spc, quadprog, memoise, polyclip,\nrgeos, gpclib, maptools, intervals, spdep, numDeriv, maxLik,\ngsl, fanplot, hhh4contacts, testthat (>= 0.11.0), coda,\nsplancs, gamlss, INLA (>= 0.0-1458166556), runjags, ggplot2,\nMGLM (>= 0.1.0), knitr"                                                                                                                                                                                                                                                
survey                    "foreign, MASS, KernSmooth, hexbin, mitools, RSQLite, RODBC,\nquantreg, parallel, CompQuadForm, DBI"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
taxize                    "testthat, roxygen2 (>= 6.0.1), knitr, vegan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
tcltk2                    "utils"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
TeachingDemos             "tkrplot, lattice, MASS, rgl, tcltk, tcltk2, png, ggplot2,\nlogspline, maptools, R2wd, manipulate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tensor                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
testit                    "rstudioapi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
testthat                  "covr, devtools, knitr, rmarkdown, xml2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
tgp                       "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
TH.data                   "dplyr, gdata, plyr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
tibble                    "covr, dplyr, import, knitr (>= 1.5.32), microbenchmark,\nmockr, nycflights13, testthat, rmarkdown, withr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
tidyr                     "covr, gapminder, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
tidyselect                "covr, dplyr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
tikzDevice                "testthat (>= 0.8.1), evaluate, stringr, ggplot2, maps, knitr,\ncrayon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
timeDate                  "date, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
timeSeries                "RUnit, robustbase, xts, PerformanceAnalytics, fTrading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
tkrplot                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tm                        "antiword, filehash, methods, pdftools, Rcampdf, Rgraphviz,\nRpoppler, SnowballC, testthat, tm.lexicon.GeneralInquirer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
treescape                 "igraph, RColorBrewer, ggplot2, testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
treespace                 "ggplot2, igraph, knitr, pander, RColorBrewer, reshape2, rgl,\nrmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
triebeard                 "knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
truncdist                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
truncnorm                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tseries                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
TTR                       "RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
urca                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
urltools                  "testthat, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
utf8                      "corpus, knitr, rmarkdown, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
uuid                      NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
V8                        "testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
vcd                       "KernSmooth, mvtnorm, kernlab, HSAUR, coin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
vcdExtra                  "gmodels, Fahrmeir, effects, VGAM, plyr, lmtest, nnet,\nggplot2, Sleuth2, car, lattice, stats4, rgl, AER"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
vegan                     "parallel, tcltk, knitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
VGAM                      "VGAMdata, MASS, mgcv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
vioplot                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
viridis                   "hexbin (>= 1.27.0), scales, MASS, knitr, dichromat,\ncolorspace, rasterVis, httr, mapproj, vdiffr, svglite (>=\n1.2.0), testthat, covr, rmarkdown, rgdal"                                                                                                                                                                                                                                                                                                                                                                                                                                
viridisLite               "hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
WDI                       NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
webmockr                  "roxygen2 (>= 6.0.1), testthat, crul (>= 0.3.4)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
whisker                   "markdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
WikidataR                 "testthat, knitr, pageviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
WikipediR                 "testthat, knitr, WikidataR, pageviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
wikitaxa                  "roxygen2 (>= 6.0.1), testthat, knitr, rmarkdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
withr                     "testthat, covr, DBI, RSQLite, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
wordcloud                 "tm (>= 0.6)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
worrms                    "roxygen2 (>= 6.0.1), knitr, testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
XML                       "bitops, RCurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
xml2                      "testthat, curl, covr, knitr, rmarkdown, magrittr, httr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
XMLRPC                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
xtable                    "knitr, lsmeans, spdep, splm, sphet, plm, zoo, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
xts                       "timeSeries, timeDate, tseries, chron, fts, tis, RUnit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
yaml                      "testthat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
Zelig                     "ei, eiPack, knitr, networkD3, optmatch, rmarkdown, testthat,\ntidyverse, ZeligChoice, ZeligEI, zeligverse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
zoo                       "coda, chron, DAAG, fts, ggplot2, mondate, scales,\nstrucchange, timeDate, timeSeries, tis, tseries, xts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
base                      "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
boot                      "MASS, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
class                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
cluster                   "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
codetools                 NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
compiler                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
datasets                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
foreign                   NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
graphics                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
grDevices                 "KernSmooth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
grid                      "lattice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
KernSmooth                "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
lattice                   "KernSmooth, MASS, latticeExtra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
MASS                      "lattice, nlme, nnet, survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
Matrix                    "expm, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
methods                   "codetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
mgcv                      "splines, parallel, survival, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
nlme                      "Hmisc, MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
nnet                      "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
parallel                  "methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
rpart                     "survival"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
spatial                   "MASS"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
splines                   "Matrix, methods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
stats                     "MASS, Matrix, SuppDists, methods, stats4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
stats4                    NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
survival                  NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tcltk                     NA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
tools                     "codetools, methods, xml2, curl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
utils                     "methods, XML"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                          Enhances                                                  
abind                     NA                                                        
acepack                   NA                                                        
adabag                    NA                                                        
alabama                   NA                                                        
alluvial                  NA                                                        
askpass                   NA                                                        
assertthat                NA                                                        
backports                 NA                                                        
base64enc                 "png"                                                     
bgmfiles                  NA                                                        
BH                        NA                                                        
bibliometrix              NA                                                        
bibtex                    NA                                                        
BiocGenerics              NA                                                        
BiocInstaller             NA                                                        
bit                       NA                                                        
bit64                     NA                                                        
bitops                    NA                                                        
blob                      NA                                                        
bookdown                  NA                                                        
brew                      NA                                                        
broom                     NA                                                        
callr                     NA                                                        
car                       NA                                                        
carData                   NA                                                        
caTools                   NA                                                        
cellranger                NA                                                        
checkmate                 NA                                                        
classInt                  NA                                                        
cli                       NA                                                        
clipr                     NA                                                        
colorspace                NA                                                        
corrplot                  NA                                                        
cowplot                   NA                                                        
crayon                    NA                                                        
crosstalk                 NA                                                        
crul                      NA                                                        
csvread                   "bit64"                                                   
Cubist                    NA                                                        
curl                      NA                                                        
data.table                NA                                                        
data.tree                 ""                                                        
DBI                       NA                                                        
dendextend                "ggdendro, dendroextras, Hmisc, data.table, rpart"        
DEoptim                   NA                                                        
DiagrammeR                NA                                                        
digest                    NA                                                        
downloader                NA                                                        
dplyr                     NA                                                        
DT                        NA                                                        
dygraphs                  "rmarkdown (>= 0.3.3), shiny (>= 0.10.2.1)"               
e1071                     NA                                                        
ECOSolveR                 NA                                                        
eha                       NA                                                        
ellipsis                  NA                                                        
evaluate                  NA                                                        
expm                      NA                                                        
extrafont                 NA                                                        
extrafontdb               NA                                                        
factoextra                NA                                                        
FactoMineR                NA                                                        
fansi                     NA                                                        
farver                    NA                                                        
fastmatch                 NA                                                        
FinCal                    NA                                                        
fitdistrplus              NA                                                        
flexdashboard             NA                                                        
forcats                   NA                                                        
foreign                   NA                                                        
Formula                   NA                                                        
fs                        NA                                                        
gbRd                      NA                                                        
gdalUtils                 NA                                                        
gdtools                   NA                                                        
genalg                    NA                                                        
generics                  NA                                                        
geojsonR                  NA                                                        
geosphere                 NA                                                        
gepaf                     NA                                                        
ggforce                   NA                                                        
ggmap                     NA                                                        
ggplot2                   "sp"                                                      
ggpubr                    NA                                                        
ggraph                    NA                                                        
ggrepel                   NA                                                        
ggsci                     NA                                                        
ggsignif                  NA                                                        
gistr                     NA                                                        
globalOptTests            NA                                                        
glue                      NA                                                        
graph                     "Rgraphviz"                                               
gridExtra                 NA                                                        
gtable                    NA                                                        
gWidgets                  NA                                                        
gWidgetsRGtk2             "RGtk2Extras"                                             
haven                     NA                                                        
highr                     NA                                                        
Hmisc                     NA                                                        
hms                       NA                                                        
htmlTable                 NA                                                        
htmltools                 "knitr"                                                   
htmlwidgets               "shiny (>= 1.1)"                                          
httpcode                  NA                                                        
httpuv                    NA                                                        
httr                      NA                                                        
hunspell                  NA                                                        
igraph                    NA                                                        
influenceR                NA                                                        
isoband                   NA                                                        
ISOcodes                  NA                                                        
janeaustenr               NA                                                        
jpeg                      NA                                                        
jsonlite                  NA                                                        
kernlab                   NA                                                        
kknn                      NA                                                        
knitr                     NA                                                        
labeling                  NA                                                        
labelled                  "memisc"                                                  
later                     NA                                                        
latticeExtra              NA                                                        
lazyeval                  NA                                                        
leaflet                   NA                                                        
leaflet.extras            NA                                                        
leafpop                   NA                                                        
lme4                      NA                                                        
lmtest                    NA                                                        
lpSolve                   NA                                                        
lpSolveAPI                NA                                                        
lsei                      NA                                                        
lubridate                 "chron, fts, timeSeries, timeDate, tis, tseries, xts, zoo"
magrittr                  NA                                                        
maps                      NA                                                        
maptools                  "gpclib, RArcInfo"                                        
markdown                  NA                                                        
MatrixModels              NA                                                        
matrixStats               NA                                                        
mc2d                      NA                                                        
mclust                    NA                                                        
mco                       NA                                                        
mda                       NA                                                        
memoise                   NA                                                        
mime                      NA                                                        
minqa                     NA                                                        
mlogit                    NA                                                        
modelr                    NA                                                        
modeltools                NA                                                        
munsell                   NA                                                        
nabor                     NA                                                        
network                   NA                                                        
networkD3                 "knitr, shiny"                                            
nloptr                    NA                                                        
NLP                       "udpipe, spacyr, cleanNLP"                                
npsurv                    NA                                                        
opencage                  NA                                                        
openssl                   NA                                                        
openxlsx                  NA                                                        
optimx                    NA                                                        
osmar                     NA                                                        
packrat                   NA                                                        
party                     NA                                                        
pbkrtest                  NA                                                        
PerformanceAnalytics      NA                                                        
pillar                    NA                                                        
pkgconfig                 NA                                                        
plogr                     NA                                                        
plotly                    NA                                                        
pls                       NA                                                        
plyr                      NA                                                        
png                       NA                                                        
polyclip                  NA                                                        
polynom                   NA                                                        
prettyunits               NA                                                        
processx                  NA                                                        
progress                  NA                                                        
promises                  NA                                                        
pryr                      NA                                                        
ps                        NA                                                        
purrr                     NA                                                        
qcc                       NA                                                        
qmap                      NA                                                        
qualityTools              NA                                                        
quantmod                  NA                                                        
quantreg                  NA                                                        
questionr                 NA                                                        
R.methodsS3               NA                                                        
R.oo                      NA                                                        
R.utils                   NA                                                        
R6                        NA                                                        
raster                    NA                                                        
rbgm                      NA                                                        
rbokeh                    "shiny (>= 0.12)"                                         
rCarto                    NA                                                        
RColorBrewer              NA                                                        
Rcpp                      NA                                                        
RcppArmadillo             NA                                                        
RcppEigen                 NA                                                        
RcppParallel              NA                                                        
RCurl                     NA                                                        
Rdpack                    NA                                                        
readr                     NA                                                        
readxl                    NA                                                        
rematch                   NA                                                        
reprex                    NA                                                        
reshape2                  NA                                                        
reticulate                NA                                                        
rgdal                     NA                                                        
rgeos                     NA                                                        
rgexf                     NA                                                        
RgoogleMaps               NA                                                        
RGraphics                 NA                                                        
Rgraphviz                 NA                                                        
rio                       NA                                                        
RISmed                    NA                                                        
RJSONIO                   NA                                                        
rlang                     NA                                                        
rmarkdown                 NA                                                        
rmdformats                NA                                                        
rminer                    NA                                                        
ROI                       NA                                                        
ROI.models.globalOptTests NA                                                        
ROI.models.miplib         NA                                                        
ROI.models.netlib         NA                                                        
ROI.plugin.alabama        NA                                                        
ROI.plugin.deoptim        NA                                                        
ROI.plugin.ecos           NA                                                        
ROI.plugin.glpk           NA                                                        
ROI.plugin.ipop           NA                                                        
ROI.plugin.lpsolve        NA                                                        
ROI.plugin.msbinlp        NA                                                        
ROI.plugin.neos           NA                                                        
ROI.plugin.optimx         NA                                                        
Rook                      NA                                                        
rprojroot                 NA                                                        
RQDA                      "tcltk, rjpod, d3Network"                                 
rriskDistributions        NA                                                        
rsconnect                 NA                                                        
rscopus                   NA                                                        
RSpectra                  NA                                                        
RSQLite                   NA                                                        
rstudioapi                NA                                                        
RTriangle                 NA                                                        
Rttf2pt1                  NA                                                        
rtweet                    NA                                                        
rvest                     NA                                                        
sandwich                  NA                                                        
satellite                 NA                                                        
scales                    NA                                                        
scatterplot3d             NA                                                        
selectr                   NA                                                        
sf                        NA                                                        
shiny                     NA                                                        
shinycssloaders           NA                                                        
shinythemes               NA                                                        
simmer                    NA                                                        
simmer.plot               NA                                                        
SixSigma                  NA                                                        
SnowballC                 NA                                                        
sourcetools               NA                                                        
sp                        NA                                                        
spacyr                    NA                                                        
SparseM                   NA                                                        
spData                    NA                                                        
spDataLarge               NA                                                        
statmod                   NA                                                        
stopwords                 NA                                                        
stringdist                NA                                                        
stringi                   NA                                                        
stringr                   NA                                                        
strucchange               NA                                                        
survival                  NA                                                        
svglite                   NA                                                        
sys                       NA                                                        
TH.data                   NA                                                        
tibble                    NA                                                        
tictoc                    NA                                                        
tidyr                     NA                                                        
tidyselect                NA                                                        
tidytext                  NA                                                        
tidyverse                 NA                                                        
timevis                   NA                                                        
tinytex                   NA                                                        
tm                        NA                                                        
tokenizers                NA                                                        
triebeard                 NA                                                        
tweenr                    NA                                                        
twitteR                   NA                                                        
units                     NA                                                        
urltools                  NA                                                        
utf8                      NA                                                        
vctrs                     NA                                                        
viridis                   NA                                                        
viridisLite               NA                                                        
visNetwork                NA                                                        
webshot                   NA                                                        
widyr                     NA                                                        
withr                     NA                                                        
wordcloud                 NA                                                        
xfun                      NA                                                        
xgboost                   NA                                                        
XML                       NA                                                        
xmlrpc2                   NA                                                        
xtable                    NA                                                        
yaml                      NA                                                        
zeallot                   NA                                                        
zip                       NA                                                        
zoo                       NA                                                        
eha                       NA                                                        
mc2d                      NA                                                        
rriskDistributions        NA                                                        
survival                  NA                                                        
abind                     NA                                                        
acepack                   NA                                                        
ade4                      NA                                                        
adegenet                  NA                                                        
adegraphics               NA                                                        
adephylo                  NA                                                        
AER                       NA                                                        
afex                      NA                                                        
Amelia                    NA                                                        
AMORE                     NA                                                        
animation                 NA                                                        
ape                       NA                                                        
arm                       NA                                                        
aroma.light               NA                                                        
assertthat                NA                                                        
backports                 NA                                                        
base64enc                 "png"                                                     
BatchJobs                 NA                                                        
BayesFactor               NA                                                        
bayesm                    NA                                                        
BBmisc                    NA                                                        
bbmle                     NA                                                        
beeswarm                  NA                                                        
BiasedUrn                 NA                                                        
bindr                     NA                                                        
bindrcpp                  NA                                                        
bio3d                     NA                                                        
bit                       NA                                                        
bit64                     NA                                                        
bitops                    NA                                                        
blob                      NA                                                        
blockmodeling             NA                                                        
BMS                       NA                                                        
bold                      NA                                                        
BoolNet                   NA                                                        
BradleyTerry2             "gnm"                                                     
brew                      NA                                                        
brglm                     NA                                                        
broom                     NA                                                        
ca                        NA                                                        
Cairo                     "FastRWeb"                                                
cairoDevice               NA                                                        
calibrate                 NA                                                        
car                       NA                                                        
carData                   NA                                                        
caret                     NA                                                        
caTools                   NA                                                        
cellranger                NA                                                        
checkmate                 NA                                                        
chron                     "zoo"                                                     
cli                       NA                                                        
clusterGeneration         NA                                                        
cmprsk                    NA                                                        
coda                      NA                                                        
coin                      NA                                                        
colorspace                NA                                                        
combinat                  NA                                                        
contfrac                  NA                                                        
conting                   NA                                                        
corpcor                   NA                                                        
crayon                    NA                                                        
crosstalk                 NA                                                        
crul                      NA                                                        
cubature                  NA                                                        
curl                      NA                                                        
CVST                      NA                                                        
data.table                NA                                                        
date                      NA                                                        
DBI                       NA                                                        
DBItest                   NA                                                        
dbplyr                    NA                                                        
ddalpha                   NA                                                        
deal                      NA                                                        
deldir                    NA                                                        
DEoptimR                  "robustbase"                                              
desc                      NA                                                        
deSolve                   NA                                                        
devtools                  NA                                                        
DiagnosisMed              NA                                                        
dichromat                 NA                                                        
digest                    NA                                                        
dimRed                    NA                                                        
distory                   NA                                                        
DNAcopy                   NA                                                        
doMC                      "compiler, RUnit"                                         
doParallel                "compiler, RUnit"                                         
DoseFinding               NA                                                        
doSNOW                    NA                                                        
dotCall64                 NA                                                        
downloader                NA                                                        
dplyr                     NA                                                        
DRR                       NA                                                        
DT                        NA                                                        
dynlm                     NA                                                        
e1071                     NA                                                        
eco                       NA                                                        
ecodist                   NA                                                        
effects                   NA                                                        
ellipse                   NA                                                        
elliptic                  NA                                                        
energy                    NA                                                        
Epi                       NA                                                        
epibasix                  NA                                                        
epicalc                   NA                                                        
epiR                      NA                                                        
epitools                  NA                                                        
eRm                       NA                                                        
estimability              NA                                                        
etm                       NA                                                        
evaluate                  NA                                                        
evd                       NA                                                        
expm                      NA                                                        
FactoMineR                NA                                                        
fail                      NA                                                        
fAsianOptions             NA                                                        
fAssets                   NA                                                        
fastcluster               "stats, flashClust"                                       
fastICA                   NA                                                        
fastmatch                 NA                                                        
fBasics                   NA                                                        
fBonds                    NA                                                        
fCopulae                  NA                                                        
fExoticOptions            NA                                                        
fExtremes                 NA                                                        
fGarch                    NA                                                        
fields                    NA                                                        
filehash                  NA                                                        
fImport                   NA                                                        
fitbitScraper             NA                                                        
fitcoach                  NA                                                        
flashClust                NA                                                        
fMultivar                 NA                                                        
fNonlinear                NA                                                        
fOptions                  NA                                                        
forcats                   NA                                                        
foreach                   "compiler, doMC, RUnit, doParallel"                       
formatR                   NA                                                        
Formula                   NA                                                        
fPortfolio                NA                                                        
fRegression               NA                                                        
fTrading                  NA                                                        
fUnitRoots                NA                                                        
futile.logger             NA                                                        
futile.options            NA                                                        
future                    NA                                                        
g.data                    NA                                                        
gam                       NA                                                        
gbm                       NA                                                        
gdata                     NA                                                        
geepack                   NA                                                        
GenABEL                   NA                                                        
GenABEL.data              NA                                                        
genetics                  NA                                                        
getopt                    NA                                                        
ggplot2                   "sp"                                                      
ggvis                     NA                                                        
git2r                     NA                                                        
glmnet                    NA                                                        
globals                   NA                                                        
glue                      NA                                                        
gmaps                     NA                                                        
gmodels                   NA                                                        
gnm                       NA                                                        
goftest                   NA                                                        
googleVis                 NA                                                        
gower                     NA                                                        
gplots                    NA                                                        
gregmisc                  NA                                                        
gridBase                  NA                                                        
gridExtra                 NA                                                        
gsl                       NA                                                        
gss                       NA                                                        
gtable                    NA                                                        
gtools                    NA                                                        
Guerry                    NA                                                        
haplo.stats               NA                                                        
haven                     NA                                                        
hdf5                      NA                                                        
hexbin                    NA                                                        
highr                     NA                                                        
Hmisc                     NA                                                        
hms                       NA                                                        
htmlTable                 NA                                                        
htmltools                 "knitr"                                                   
htmlwidgets               "shiny (>= 0.12)"                                         
httpcode                  NA                                                        
httpuv                    NA                                                        
httr                      NA                                                        
hwriter                   NA                                                        
hypergeo                  NA                                                        
igraph                    NA                                                        
inline                    NA                                                        
int64                     NA                                                        
ipred                     NA                                                        
irlba                     NA                                                        
ISOcodes                  NA                                                        
ISOweek                   NA                                                        
iterators                 NA                                                        
its                       NA                                                        
jsonlite                  NA                                                        
kernlab                   NA                                                        
knitr                     NA                                                        
labeling                  NA                                                        
lambda.r                  NA                                                        
latticeExtra              NA                                                        
lava                      NA                                                        
lavaan                    NA                                                        
lazyeval                  NA                                                        
leaps                     NA                                                        
LearnBayes                NA                                                        
lexRankr                  NA                                                        
lhs                       NA                                                        
listenv                   NA                                                        
littler                   NA                                                        
lme4                      NA                                                        
lmerTest                  NA                                                        
lmtest                    NA                                                        
logspline                 NA                                                        
lpSolve                   NA                                                        
lsmeans                   NA                                                        
lubridate                 "chron, fts, timeSeries, timeDate, tis, tseries, xts, zoo"
Luminescence              NA                                                        
magrittr                  NA                                                        
MALDIquant                NA                                                        
MALDIquantForeign         NA                                                        
mapdata                   NA                                                        
mapproj                   NA                                                        
maps                      NA                                                        
maptools                  "gpclib, RArcInfo"                                        
maptree                   NA                                                        
markdown                  NA                                                        
Matching                  NA                                                        
MatchIt                   NA                                                        
matrixcalc                NA                                                        
MatrixModels              NA                                                        
matrixStats               NA                                                        
maxLik                    NA                                                        
mclust                    NA                                                        
mcmc                      NA                                                        
MCMCpack                  NA                                                        
medAdherence              NA                                                        
memoise                   NA                                                        
mFilter                   NA                                                        
mi                        NA                                                        
mime                      NA                                                        
miniUI                    NA                                                        
minpack.lm                NA                                                        
minqa                     NA                                                        
misc3d                    NA                                                        
miscTools                 NA                                                        
mixtools                  NA                                                        
mlbench                   NA                                                        
mlmRev                    NA                                                        
mnormt                    NA                                                        
MNP                       NA                                                        
mockery                   NA                                                        
ModelMetrics              NA                                                        
modeltools                NA                                                        
msm                       NA                                                        
multcomp                  NA                                                        
multicore                 NA                                                        
munsell                   NA                                                        
mvnormtest                NA                                                        
mvtnorm                   NA                                                        
natserv                   NA                                                        
ncdf4                     NA                                                        
nleqslv                   NA                                                        
nloptr                    NA                                                        
NLP                       NA                                                        
NMF                       NA                                                        
nnls                      NA                                                        
nortest                   NA                                                        
numDeriv                  NA                                                        
nws                       NA                                                        
openssl                   NA                                                        
optparse                  NA                                                        
pbapply                   NA                                                        
pbdZMQ                    NA                                                        
pbivnorm                  NA                                                        
pbkrtest                  NA                                                        
permute                   NA                                                        
phangorn                  NA                                                        
pheatmap                  NA                                                        
phylobase                 NA                                                        
phytools                  NA                                                        
pillar                    NA                                                        
pkgconfig                 NA                                                        
pkgKitten                 NA                                                        
pkgmaker                  NA                                                        
plogr                     NA                                                        
plotly                    NA                                                        
plotrix                   NA                                                        
plyr                      NA                                                        
png                       NA                                                        
polspline                 NA                                                        
polyclip                  NA                                                        
polyCub                   NA                                                        
praise                    NA                                                        
prettyunits               NA                                                        
princurve                 NA                                                        
prodlim                   NA                                                        
profileModel              NA                                                        
progress                  NA                                                        
proto                     NA                                                        
PSCBS                     NA                                                        
pscl                      NA                                                        
psy                       NA                                                        
psych                     NA                                                        
purrr                     NA                                                        
pwt                       NA                                                        
pwt8                      NA                                                        
pwt9                      NA                                                        
qqman                     NA                                                        
qtl                       NA                                                        
quadprog                  NA                                                        
quantmod                  NA                                                        
quantreg                  NA                                                        
qvcalc                    "psychotools"                                             
R.cache                   NA                                                        
R.methodsS3               NA                                                        
R.oo                      NA                                                        
R.utils                   NA                                                        
R6                        NA                                                        
RandomFields              NA                                                        
RandomFieldsUtils         NA                                                        
randomForest              NA                                                        
RaschSampler              NA                                                        
raster                    NA                                                        
Rcmdr                     NA                                                        
RcmdrMisc                 NA                                                        
RColorBrewer              NA                                                        
Rcpp                      NA                                                        
RcppArmadillo             NA                                                        
RcppEigen                 NA                                                        
RcppGSL                   NA                                                        
RcppRoll                  NA                                                        
RCurl                     NA                                                        
readBrukerFlexData        NA                                                        
readMzXmlData             NA                                                        
readr                     NA                                                        
readstata13               NA                                                        
readxl                    NA                                                        
recipes                   NA                                                        
registry                  NA                                                        
relimp                    NA                                                        
rematch                   NA                                                        
rentrez                   NA                                                        
repr                      "data.table, dplyr, htmlwidgets"                          
reshape                   NA                                                        
reshape2                  NA                                                        
rgenoud                   NA                                                        
rggobi                    NA                                                        
rgl                       NA                                                        
Rglpk                     NA                                                        
rglwidget                 NA                                                        
RGtk2                     NA                                                        
rhandsontable             NA                                                        
RInside                   NA                                                        
ritis                     NA                                                        
rjags                     NA                                                        
rJava                     NA                                                        
rjson                     NA                                                        
RJSONIO                   NA                                                        
rlang                     NA                                                        
rlist                     NA                                                        
RLumShiny                 NA                                                        
Rmpi                      NA                                                        
rms                       NA                                                        
RMySQL                    NA                                                        
rncl                      NA                                                        
rneos                     NA                                                        
RNetCDF                   NA                                                        
RNeXML                    NA                                                        
rngtools                  NA                                                        
Rniftilib                 NA                                                        
robustbase                NA                                                        
ROCR                      NA                                                        
RODBC                     NA                                                        
rotl                      NA                                                        
RPostgreSQL               NA                                                        
rprojroot                 NA                                                        
RProtoBuf                 NA                                                        
RQuantLib                 NA                                                        
rredlist                  NA                                                        
RSclient                  NA                                                        
rsdmx                     NA                                                        
Rserve                    NA                                                        
Rsolnp                    NA                                                        
rsprng                    NA                                                        
RSQLite                   NA                                                        
rstudioapi                NA                                                        
Rsymphony                 "slam, Matrix, SparseM"                                   
RUnit                     NA                                                        
sandwich                  NA                                                        
scales                    NA                                                        
scatterD3                 "shiny"                                                   
scatterplot3d             NA                                                        
segmented                 NA                                                        
sem                       NA                                                        
semTools                  NA                                                        
sendmailR                 NA                                                        
seqinr                    NA                                                        
seroincidence             NA                                                        
sfsmisc                   "mgcv, rpart, nor1mix, polycor, sm, tikzDevice"           
shape                     NA                                                        
shiny                     NA                                                        
shinyBS                   NA                                                        
shinydashboard            NA                                                        
shinyjs                   NA                                                        
slam                      "Matrix, SparseM, spam"                                   
sm                        NA                                                        
sn                        NA                                                        
snow                      NA                                                        
SnowballC                 NA                                                        
solrium                   NA                                                        
sourcetools               NA                                                        
sp                        NA                                                        
spam                      NA                                                        
SparseM                   NA                                                        
spatstat                  NA                                                        
spatstat.data             NA                                                        
spatstat.utils            NA                                                        
spc                       NA                                                        
spdep                     NA                                                        
stabledist                NA                                                        
statmod                   NA                                                        
stringi                   NA                                                        
stringr                   NA                                                        
strucchange               NA                                                        
surveillance              NA                                                        
survey                    NA                                                        
taxize                    NA                                                        
tcltk2                    NA                                                        
TeachingDemos             NA                                                        
tensor                    NA                                                        
testit                    NA                                                        
testthat                  NA                                                        
tgp                       NA                                                        
TH.data                   NA                                                        
tibble                    NA                                                        
tidyr                     NA                                                        
tidyselect                NA                                                        
tikzDevice                NA                                                        
timeDate                  NA                                                        
timeSeries                NA                                                        
tkrplot                   NA                                                        
tm                        NA                                                        
treescape                 NA                                                        
treespace                 NA                                                        
triebeard                 NA                                                        
truncdist                 NA                                                        
truncnorm                 NA                                                        
tseries                   NA                                                        
TTR                       "quantmod"                                                
urca                      NA                                                        
urltools                  NA                                                        
utf8                      NA                                                        
uuid                      NA                                                        
V8                        NA                                                        
vcd                       NA                                                        
vcdExtra                  NA                                                        
vegan                     NA                                                        
VGAM                      NA                                                        
vioplot                   NA                                                        
viridis                   NA                                                        
viridisLite               NA                                                        
WDI                       NA                                                        
webmockr                  NA                                                        
whisker                   NA                                                        
WikidataR                 NA                                                        
WikipediR                 NA                                                        
wikitaxa                  NA                                                        
withr                     NA                                                        
wordcloud                 NA                                                        
worrms                    NA                                                        
XML                       NA                                                        
xml2                      NA                                                        
XMLRPC                    NA                                                        
xtable                    NA                                                        
xts                       NA                                                        
yaml                      NA                                                        
Zelig                     NA                                                        
zoo                       NA                                                        
base                      NA                                                        
boot                      NA                                                        
class                     NA                                                        
cluster                   NA                                                        
codetools                 NA                                                        
compiler                  NA                                                        
datasets                  NA                                                        
foreign                   NA                                                        
graphics                  NA                                                        
grDevices                 NA                                                        
grid                      NA                                                        
KernSmooth                NA                                                        
lattice                   "chron"                                                   
MASS                      NA                                                        
Matrix                    "MatrixModels, graph, SparseM, sfsmisc"                   
methods                   NA                                                        
mgcv                      NA                                                        
nlme                      NA                                                        
nnet                      NA                                                        
parallel                  "snow, nws, Rmpi"                                         
rpart                     NA                                                        
spatial                   NA                                                        
splines                   NA                                                        
stats                     NA                                                        
stats4                    NA                                                        
survival                  NA                                                        
tcltk                     NA                                                        
tools                     NA                                                        
utils                     NA                                                        
                          License                                 
abind                     "LGPL (>= 2)"                           
acepack                   "MIT + file LICENSE"                    
adabag                    "GPL (>= 2)"                            
alabama                   "GPL (>= 2)"                            
alluvial                  "MIT + file LICENSE"                    
askpass                   "MIT + file LICENSE"                    
assertthat                "GPL-3"                                 
backports                 "GPL-2"                                 
base64enc                 "GPL-2 | GPL-3"                         
bgmfiles                  "CC0"                                   
BH                        "BSL-1.0"                               
bibliometrix              "GPL-3"                                 
bibtex                    "GPL (>= 2)"                            
BiocGenerics              "Artistic-2.0"                          
BiocInstaller             "Artistic-2.0"                          
bit                       "GPL-2"                                 
bit64                     "GPL-2"                                 
bitops                    "GPL (>= 2)"                            
blob                      "GPL-3"                                 
bookdown                  "GPL-3"                                 
brew                      "GPL-2"                                 
broom                     "MIT + file LICENSE"                    
callr                     "MIT + file LICENSE"                    
car                       "GPL (>= 2)"                            
carData                   "GPL (>= 2)"                            
caTools                   "GPL-3"                                 
cellranger                "MIT + file LICENSE"                    
checkmate                 "BSD_3_clause + file LICENSE"           
classInt                  "GPL (>= 2)"                            
cli                       "MIT + file LICENSE"                    
clipr                     "GPL-3"                                 
colorspace                "BSD_3_clause + file LICENSE"           
corrplot                  "GPL"                                   
cowplot                   "GPL-2"                                 
crayon                    "MIT + file LICENSE"                    
crosstalk                 "MIT + file LICENSE"                    
crul                      "MIT + file LICENSE"                    
csvread                   "Apache License (== 2.0)"               
Cubist                    "GPL-3"                                 
curl                      "MIT + file LICENSE"                    
data.table                "MPL-2.0 | file LICENSE"                
data.tree                 "GPL (>= 2)"                            
DBI                       "LGPL (>= 2)"                           
dendextend                "GPL-2 | GPL-3"                         
DEoptim                   "GPL (>= 2)"                            
DiagrammeR                "MIT + file LICENSE"                    
digest                    "GPL (>= 2)"                            
downloader                "GPL-2"                                 
dplyr                     "MIT + file LICENSE"                    
DT                        "GPL-3 | file LICENSE"                  
dygraphs                  "MIT + file LICENSE"                    
e1071                     "GPL-2 | GPL-3"                         
ECOSolveR                 "GPL (>= 3)"                            
eha                       "GPL (>= 2)"                            
ellipsis                  "GPL-3"                                 
evaluate                  "MIT + file LICENSE"                    
expm                      "GPL (>= 2)"                            
extrafont                 "GPL-2"                                 
extrafontdb               "GPL-2"                                 
factoextra                "GPL-2"                                 
FactoMineR                "GPL (>= 2)"                            
fansi                     "GPL (>= 2)"                            
farver                    "MIT + file LICENSE"                    
fastmatch                 "GPL-2"                                 
FinCal                    "GPL (>= 2)"                            
fitdistrplus              "GPL (>= 2)"                            
flexdashboard             "MIT + file LICENSE"                    
forcats                   "GPL-3"                                 
foreign                   "GPL (>= 2)"                            
Formula                   "GPL-2 | GPL-3"                         
fs                        "GPL-3"                                 
gbRd                      "GPL (>= 2)"                            
gdalUtils                 "GPL (>= 2)"                            
gdtools                   "GPL-3 | file LICENSE"                  
genalg                    "GPL-2"                                 
generics                  "GPL-2"                                 
geojsonR                  "MIT + file LICENSE"                    
geosphere                 "GPL (>= 3)"                            
gepaf                     "GPL-3"                                 
ggforce                   "MIT + file LICENSE"                    
ggmap                     "GPL-2"                                 
ggplot2                   "GPL-2 | file LICENSE"                  
ggpubr                    "GPL-2"                                 
ggraph                    "GPL-3"                                 
ggrepel                   "GPL-3 | file LICENSE"                  
ggsci                     "GPL-3 | file LICENSE"                  
ggsignif                  "GPL-3"                                 
gistr                     "MIT + file LICENSE"                    
globalOptTests            "GPL (>= 3)"                            
glue                      "MIT + file LICENSE"                    
graph                     "Artistic-2.0"                          
gridExtra                 "GPL (>= 2)"                            
gtable                    "GPL-2"                                 
gWidgets                  "GPL (>= 2)"                            
gWidgetsRGtk2             "GPL (>= 2)"                            
haven                     "MIT + file LICENSE"                    
highr                     "GPL"                                   
Hmisc                     "GPL (>= 2)"                            
hms                       "GPL-3"                                 
htmlTable                 "GPL (>= 3)"                            
htmltools                 "GPL (>= 2)"                            
htmlwidgets               "MIT + file LICENSE"                    
httpcode                  "MIT + file LICENSE"                    
httpuv                    "GPL (>= 2) | file LICENSE"             
httr                      "MIT + file LICENSE"                    
hunspell                  "GPL-2 | LGPL-2.1 | MPL-1.1"            
igraph                    "GPL (>= 2)"                            
influenceR                "GPL-2"                                 
isoband                   "MIT + file LICENSE"                    
ISOcodes                  "GPL-2"                                 
janeaustenr               "MIT + file LICENSE"                    
jpeg                      "GPL-2 | GPL-3"                         
jsonlite                  "MIT + file LICENSE"                    
kernlab                   "GPL-2"                                 
kknn                      "GPL (>= 2)"                            
knitr                     "GPL"                                   
labeling                  "MIT + file LICENSE | Unlimited"        
labelled                  "GPL-3"                                 
later                     "GPL (>= 2)"                            
latticeExtra              "GPL (>= 2)"                            
lazyeval                  "GPL-3"                                 
leaflet                   "GPL-3"                                 
leaflet.extras            "GPL-3 | file LICENSE"                  
leafpop                   "MIT + file LICENSE"                    
lme4                      "GPL (>= 2)"                            
lmtest                    "GPL-2 | GPL-3"                         
lpSolve                   "LGPL-2"                                
lpSolveAPI                "LGPL-2"                                
lsei                      "GPL (>= 2)"                            
lubridate                 "GPL (>= 2)"                            
magrittr                  "MIT + file LICENSE"                    
maps                      "GPL-2"                                 
maptools                  "GPL (>= 2)"                            
markdown                  "GPL-2"                                 
MatrixModels              "GPL (>= 2)"                            
matrixStats               "Artistic-2.0"                          
mc2d                      "GPL (>= 2)"                            
mclust                    "GPL (>= 2)"                            
mco                       "GPL-2"                                 
mda                       "GPL-2"                                 
memoise                   "MIT + file LICENSE"                    
mime                      "GPL"                                   
minqa                     "GPL-2"                                 
mlogit                    "GPL (>= 2)"                            
modelr                    "GPL-3"                                 
modeltools                "GPL-2"                                 
munsell                   "MIT + file LICENSE"                    
nabor                     "BSD_3_clause + file LICENSE"           
network                   "GPL (>= 2)"                            
networkD3                 "GPL (>= 3)"                            
nloptr                    "LGPL-3"                                
NLP                       "GPL-3"                                 
npsurv                    "GPL (>= 2)"                            
opencage                  "GPL (>= 2)"                            
openssl                   "MIT + file LICENSE"                    
openxlsx                  "MIT + file LICENSE"                    
optimx                    "GPL-2"                                 
osmar                     "GPL-2"                                 
packrat                   "GPL-2"                                 
party                     "GPL-2"                                 
pbkrtest                  "GPL (>= 2)"                            
PerformanceAnalytics      "GPL-2 | GPL-3"                         
pillar                    "GPL-3"                                 
pkgconfig                 "MIT + file LICENSE"                    
plogr                     "MIT + file LICENSE"                    
plotly                    "MIT + file LICENSE"                    
pls                       "GPL-2"                                 
plyr                      "MIT + file LICENSE"                    
png                       "GPL-2 | GPL-3"                         
polyclip                  "BSL"                                   
polynom                   "GPL-2"                                 
prettyunits               "MIT + file LICENSE"                    
processx                  "MIT + file LICENSE"                    
progress                  "MIT + file LICENSE"                    
promises                  "MIT + file LICENSE"                    
pryr                      "GPL-2"                                 
ps                        "BSD_3_clause + file LICENSE"           
purrr                     "GPL-3 | file LICENSE"                  
qcc                       "GPL (>= 2)"                            
qmap                      "GPL (>= 2)"                            
qualityTools              "GPL-2"                                 
quantmod                  "GPL-3"                                 
quantreg                  "GPL (>= 2)"                            
questionr                 "GPL (>= 2)"                            
R.methodsS3               "LGPL (>= 2.1)"                         
R.oo                      "LGPL (>= 2.1)"                         
R.utils                   "LGPL (>= 2.1)"                         
R6                        "MIT + file LICENSE"                    
raster                    "GPL (>= 3)"                            
rbgm                      "GPL-3"                                 
rbokeh                    "MIT + file LICENSE"                    
rCarto                    "GPL (>= 2.0)"                          
RColorBrewer              "Apache License 2.0"                    
Rcpp                      "GPL (>= 2)"                            
RcppArmadillo             "GPL (>= 2)"                            
RcppEigen                 "GPL (>= 2) | file LICENSE"             
RcppParallel              "GPL-2"                                 
RCurl                     "BSD"                                   
Rdpack                    "GPL (>= 2)"                            
readr                     "GPL (>= 2) | file LICENSE"             
readxl                    "GPL-3"                                 
rematch                   "MIT + file LICENSE"                    
reprex                    "MIT + file LICENSE"                    
reshape2                  "MIT + file LICENSE"                    
reticulate                "Apache License 2.0"                    
rgdal                     "GPL (>= 2)"                            
rgeos                     "GPL (>= 2)"                            
rgexf                     "GPL (>= 3)"                            
RgoogleMaps               "GPL"                                   
RGraphics                 "GPL"                                   
Rgraphviz                 "EPL"                                   
rio                       "GPL-2"                                 
RISmed                    "GPL (>= 2)"                            
RJSONIO                   "BSD_3_clause + file LICENSE"           
rlang                     "GPL-3"                                 
rmarkdown                 "GPL-3"                                 
rmdformats                "GPL (>= 2)"                            
rminer                    "GPL-2"                                 
ROI                       "GPL-3"                                 
ROI.models.globalOptTests "GPL-3"                                 
ROI.models.miplib         "GPL-3"                                 
ROI.models.netlib         "GPL-3"                                 
ROI.plugin.alabama        "GPL-3"                                 
ROI.plugin.deoptim        "GPL-3"                                 
ROI.plugin.ecos           "GPL-3"                                 
ROI.plugin.glpk           "GPL-3"                                 
ROI.plugin.ipop           "GPL-3"                                 
ROI.plugin.lpsolve        "GPL-3"                                 
ROI.plugin.msbinlp        "GPL-3"                                 
ROI.plugin.neos           "GPL-3"                                 
ROI.plugin.optimx         "GPL-3"                                 
Rook                      "GPL-2"                                 
rprojroot                 "GPL-3"                                 
RQDA                      "BSD_3_clause + file LICENSE"           
rriskDistributions        "GPL (>= 3)"                            
rsconnect                 "GPL-2"                                 
rscopus                   "GPL-2"                                 
RSpectra                  "MPL (>= 2)"                            
RSQLite                   "LGPL (>= 2)"                           
rstudioapi                "MIT + file LICENSE"                    
RTriangle                 "CC BY-NC-SA 4.0"                       
Rttf2pt1                  "file LICENSE"                          
rtweet                    "MIT + file LICENSE"                    
rvest                     "GPL-3"                                 
sandwich                  "GPL-2 | GPL-3"                         
satellite                 "GPL (>= 3) | file LICENSE"             
scales                    "MIT + file LICENSE"                    
scatterplot3d             "GPL-2"                                 
selectr                   "BSD_3_clause + file LICENCE"           
sf                        "GPL-2 | MIT + file LICENSE"            
shiny                     "GPL-3 | file LICENSE"                  
shinycssloaders           "GPL-3"                                 
shinythemes               "GPL-3 | file LICENSE"                  
simmer                    "GPL (>= 2)"                            
simmer.plot               "MIT + file LICENSE"                    
SixSigma                  "GPL (>= 2)"                            
SnowballC                 "BSD_3_clause + file LICENSE"           
sourcetools               "MIT + file LICENSE"                    
sp                        "GPL (>= 2)"                            
spacyr                    "GPL-3"                                 
SparseM                   "GPL (>= 2)"                            
spData                    "CC0"                                   
spDataLarge               "CC0"                                   
statmod                   "GPL-2 | GPL-3"                         
stopwords                 "MIT + file LICENSE"                    
stringdist                "GPL-3"                                 
stringi                   "file LICENSE"                          
stringr                   "GPL-2 | file LICENSE"                  
strucchange               "GPL-2 | GPL-3"                         
survival                  "LGPL (>= 2)"                           
svglite                   "GPL (>= 2)"                            
sys                       "MIT + file LICENSE"                    
TH.data                   "GPL-3"                                 
tibble                    "MIT + file LICENSE"                    
tictoc                    "Apache License (== 2.0) | file LICENSE"
tidyr                     "MIT + file LICENSE"                    
tidyselect                "GPL-3"                                 
tidytext                  "MIT + file LICENSE"                    
tidyverse                 "GPL-3 | file LICENSE"                  
timevis                   "MIT + file LICENSE"                    
tinytex                   "MIT + file LICENSE"                    
tm                        "GPL-3"                                 
tokenizers                "MIT + file LICENSE"                    
triebeard                 "MIT + file LICENSE"                    
tweenr                    "MIT + file LICENSE"                    
twitteR                   "Artistic-2.0"                          
units                     "GPL-2"                                 
urltools                  "MIT + file LICENSE"                    
utf8                      "Apache License (== 2.0) | file LICENSE"
vctrs                     "GPL-3"                                 
viridis                   "MIT + file LICENSE"                    
viridisLite               "MIT + file LICENSE"                    
visNetwork                "MIT + file LICENSE"                    
webshot                   "GPL-2"                                 
widyr                     "MIT + file LICENSE"                    
withr                     "GPL (>= 2)"                            
wordcloud                 "LGPL-2.1"                              
xfun                      "MIT + file LICENSE"                    
xgboost                   "Apache License (== 2.0) | file LICENSE"
XML                       "BSD_2_clause + file LICENSE"           
xmlrpc2                   "GPL-3"                                 
xtable                    "GPL (>= 2)"                            
yaml                      "BSD_3_clause + file LICENSE"           
zeallot                   "MIT + file LICENSE"                    
zip                       "CC0"                                   
zoo                       "GPL-2 | GPL-3"                         
eha                       "GPL (>= 2)"                            
mc2d                      "GPL (>= 2)"                            
rriskDistributions        "GPL (>= 3)"                            
survival                  "LGPL (>= 2)"                           
abind                     "LGPL (>= 2)"                           
acepack                   "MIT + file LICENSE"                    
ade4                      "GPL (>= 2)"                            
adegenet                  "GPL (>= 2)"                            
adegraphics               "GPL (>= 2)"                            
adephylo                  "GPL (>= 2)"                            
AER                       "GPL-2 | GPL-3"                         
afex                      "GPL (>= 2)"                            
Amelia                    "GPL (>= 2)"                            
AMORE                     "GPL (>= 2)"                            
animation                 "GPL"                                   
ape                       "GPL (>= 2)"                            
arm                       "GPL (>= 3)"                            
aroma.light               "GPL (>= 2)"                            
assertthat                "GPL-3"                                 
backports                 "GPL-2"                                 
base64enc                 "GPL-2 | GPL-3"                         
BatchJobs                 "BSD_2_clause + file LICENSE"           
BayesFactor               "GPL-2"                                 
bayesm                    "GPL (>= 2)"                            
BBmisc                    "BSD_2_clause + file LICENSE"           
bbmle                     "GPL"                                   
beeswarm                  "Artistic-2.0"                          
BiasedUrn                 "GPL-3"                                 
bindr                     "MIT + file LICENSE"                    
bindrcpp                  "MIT + file LICENSE"                    
bio3d                     "GPL (>= 2)"                            
bit                       "GPL-2"                                 
bit64                     "GPL-2"                                 
bitops                    "GPL (>= 2)"                            
blob                      "GPL-3"                                 
blockmodeling             "GPL-2 | GPL-3"                         
BMS                       "Artistic-2.0"                          
bold                      "MIT + file LICENSE"                    
BoolNet                   "Artistic-2.0"                          
BradleyTerry2             "GPL (>= 2)"                            
brew                      "GPL-2"                                 
brglm                     "GPL (>= 2)"                            
broom                     "MIT + file LICENSE"                    
ca                        "GPL"                                   
Cairo                     "GPL-2"                                 
cairoDevice               "GPL"                                   
calibrate                 "GPL-2"                                 
car                       "GPL (>= 2)"                            
carData                   "GPL (>= 2)"                            
caret                     "GPL (>= 2)"                            
caTools                   "GPL-3"                                 
cellranger                "MIT + file LICENSE"                    
checkmate                 "BSD_3_clause + file LICENSE"           
chron                     "GPL-2"                                 
cli                       "MIT + file LICENSE"                    
clusterGeneration         "GPL (>= 2)"                            
cmprsk                    "GPL (>= 2)"                            
coda                      "GPL (>= 2)"                            
coin                      "GPL-2"                                 
colorspace                "BSD_3_clause + file LICENSE"           
combinat                  "GPL-2"                                 
contfrac                  "GPL-2"                                 
conting                   "GPL-2"                                 
corpcor                   "GPL (>= 3)"                            
crayon                    "MIT + file LICENSE"                    
crosstalk                 "MIT + file LICENSE"                    
crul                      "MIT + file LICENSE"                    
cubature                  "GPL-3"                                 
curl                      "MIT + file LICENSE"                    
CVST                      "GPL (>= 2.0)"                          
data.table                "GPL-3 | file LICENSE"                  
date                      "GPL-2"                                 
DBI                       "LGPL (>= 2)"                           
DBItest                   "LGPL (>= 2)"                           
dbplyr                    "MIT + file LICENSE"                    
ddalpha                   "GPL-2"                                 
deal                      "GPL (>= 2)"                            
deldir                    "GPL (>= 2)"                            
DEoptimR                  "GPL (>= 2)"                            
desc                      "MIT + file LICENSE"                    
deSolve                   "GPL (>= 2)"                            
devtools                  "GPL (>= 2)"                            
DiagnosisMed              "GPL (>= 2)"                            
dichromat                 "GPL-2"                                 
digest                    "GPL (>= 2)"                            
dimRed                    "GPL-3 | file LICENSE"                  
distory                   "BSD"                                   
DNAcopy                   "GPL (>= 2)"                            
doMC                      "GPL-2"                                 
doParallel                "GPL-2"                                 
DoseFinding               "GPL-3"                                 
doSNOW                    "GPL-2"                                 
dotCall64                 "GPL (>= 2)"                            
downloader                "GPL-2"                                 
dplyr                     "MIT + file LICENSE"                    
DRR                       "GPL-3"                                 
DT                        "GPL-3 | file LICENSE"                  
dynlm                     "GPL-2 | GPL-3"                         
e1071                     "GPL-2"                                 
eco                       "GPL (>= 2)"                            
ecodist                   "GPL (>= 2)"                            
effects                   "GPL (>= 2)"                            
ellipse                   "GPL (>= 2)"                            
elliptic                  "GPL-2"                                 
energy                    "GPL (>= 2)"                            
Epi                       "GPL-2"                                 
epibasix                  "GPL (>= 2)"                            
epicalc                   "GPL (>= 2)"                            
epiR                      "GPL (>= 2)"                            
epitools                  "GPL (>= 2)"                            
eRm                       "GPL-2"                                 
estimability              "GPL (>= 3)"                            
etm                       "GPL (>= 2)"                            
evaluate                  "MIT + file LICENSE"                    
evd                       "GPL-3"                                 
expm                      "GPL (>= 2)"                            
FactoMineR                "GPL (>= 2)"                            
fail                      "BSD_3_clause + file LICENSE"           
fAsianOptions             "GPL (>= 2)"                            
fAssets                   "GPL (>= 2)"                            
fastcluster               "FreeBSD | GPL-2 | file LICENSE"        
fastICA                   "GPL-2 | GPL-3"                         
fastmatch                 "GPL-2"                                 
fBasics                   "GPL (>= 2)"                            
fBonds                    "GPL (>= 2)"                            
fCopulae                  "GPL (>= 2)"                            
fExoticOptions            "GPL (>= 2)"                            
fExtremes                 "GPL (>= 2)"                            
fGarch                    "GPL (>= 2)"                            
fields                    "GPL (>= 2)"                            
filehash                  "GPL (>= 2)"                            
fImport                   "GPL (>= 2)"                            
fitbitScraper             "MIT + file LICENSE"                    
fitcoach                  "GPL-3"                                 
flashClust                "GPL (>= 2)"                            
fMultivar                 "GPL (>= 2)"                            
fNonlinear                "GPL (>= 2)"                            
fOptions                  "GPL (>= 2)"                            
forcats                   "GPL-3"                                 
foreach                   "Apache License (== 2.0)"               
formatR                   "GPL"                                   
Formula                   "GPL-2 | GPL-3"                         
fPortfolio                "GPL (>= 2)"                            
fRegression               "GPL (>= 2)"                            
fTrading                  "GPL (>= 2)"                            
fUnitRoots                "GPL (>= 2)"                            
futile.logger             "LGPL-3"                                
futile.options            "LGPL-3"                                
future                    "LGPL (>= 2.1)"                         
g.data                    "GPL"                                   
gam                       "GPL-2"                                 
gbm                       "GPL (>= 2) | file LICENSE"             
gdata                     "GPL-2"                                 
geepack                   "GPL (>= 3)"                            
GenABEL                   "GPL (>= 2)"                            
GenABEL.data              "GPL (>= 2)"                            
genetics                  "GPL"                                   
getopt                    "GPL (>= 2)"                            
ggplot2                   "GPL-2 | file LICENSE"                  
ggvis                     "GPL-2 | file LICENSE"                  
git2r                     "GPL-2"                                 
glmnet                    "GPL-2"                                 
globals                   "LGPL (>= 2.1)"                         
glue                      "MIT + file LICENSE"                    
gmaps                     "GPL (>= 2)"                            
gmodels                   "GPL-2"                                 
gnm                       "GPL-2 | GPL-3"                         
goftest                   "GPL (>= 2)"                            
googleVis                 "GPL (>= 2)"                            
gower                     "GPL-3"                                 
gplots                    "GPL-2"                                 
gregmisc                  "GPL-2"                                 
gridBase                  "GPL"                                   
gridExtra                 "GPL (>= 2)"                            
gsl                       "GPL (>= 2)"                            
gss                       "GPL (>= 2)"                            
gtable                    "GPL-2"                                 
gtools                    "GPL-2"                                 
Guerry                    "GPL"                                   
haplo.stats               "GPL (>= 2)"                            
haven                     "MIT + file LICENSE"                    
hdf5                      "GPL (>= 2)"                            
hexbin                    "GPL-2"                                 
highr                     "GPL"                                   
Hmisc                     "GPL (>= 2)"                            
hms                       "GPL-3"                                 
htmlTable                 "GPL (>= 3)"                            
htmltools                 "GPL (>= 2)"                            
htmlwidgets               "MIT + file LICENSE"                    
httpcode                  "MIT + file LICENSE"                    
httpuv                    "GPL-3 | file LICENSE"                  
httr                      "MIT + file LICENSE"                    
hwriter                   "LGPL-2.1"                              
hypergeo                  "GPL-2"                                 
igraph                    "GPL (>= 2)"                            
inline                    "LGPL"                                  
int64                     "GPL (>= 2)"                            
ipred                     "GPL (>= 2)"                            
irlba                     "GPL-3"                                 
ISOcodes                  "GPL-2"                                 
ISOweek                   "GPL (>= 2)"                            
iterators                 "Apache License (== 2.0)"               
its                       "GPL-2"                                 
jsonlite                  "MIT + file LICENSE"                    
kernlab                   "GPL-2"                                 
knitr                     "GPL"                                   
labeling                  "MIT + file LICENSE | Unlimited"        
lambda.r                  "LGPL-3"                                
latticeExtra              "GPL (>= 2)"                            
lava                      "GPL-3"                                 
lavaan                    "GPL (>= 2)"                            
lazyeval                  "GPL-3"                                 
leaps                     "GPL (>= 2)"                            
LearnBayes                "GPL (>= 2)"                            
lexRankr                  "MIT + file LICENSE"                    
lhs                       "GPL (>= 2)"                            
listenv                   "LGPL (>= 2.1)"                         
littler                   "GPL (>= 2)"                            
lme4                      "GPL (>= 2)"                            
lmerTest                  "GPL (>= 2)"                            
lmtest                    "GPL-2 | GPL-3"                         
logspline                 "Apache License 2.0"                    
lpSolve                   "LGPL-2"                                
lsmeans                   "GPL-2 | GPL-3"                         
lubridate                 "GPL-2"                                 
Luminescence              "GPL-3"                                 
magrittr                  "MIT + file LICENSE"                    
MALDIquant                "GPL (>= 3)"                            
MALDIquantForeign         "GPL (>= 3)"                            
mapdata                   "GPL-2"                                 
mapproj                   "Lucent Public License"                 
maps                      "GPL-2"                                 
maptools                  "GPL (>= 2)"                            
maptree                   "Unlimited"                             
markdown                  "GPL-2"                                 
Matching                  "GPL-3"                                 
MatchIt                   "GPL (>= 2)"                            
matrixcalc                "GPL (>= 2)"                            
MatrixModels              "GPL (>= 2)"                            
matrixStats               "Artistic-2.0"                          
maxLik                    "GPL (>= 2)"                            
mclust                    "GPL (>= 2)"                            
mcmc                      "MIT + file LICENSE"                    
MCMCpack                  "GPL-3"                                 
medAdherence              "GPL-2"                                 
memoise                   "MIT + file LICENSE"                    
mFilter                   "GPL (>= 2)"                            
mi                        "GPL (>= 2)"                            
mime                      "GPL"                                   
miniUI                    "GPL-3"                                 
minpack.lm                "GPL-3"                                 
minqa                     "GPL-2"                                 
misc3d                    "GPL"                                   
miscTools                 "GPL (>= 2)"                            
mixtools                  "GPL (>= 2)"                            
mlbench                   "GPL-2"                                 
mlmRev                    "GPL (>= 2)"                            
mnormt                    "GPL-2 | GPL-3"                         
MNP                       "GPL (>= 2)"                            
mockery                   "MIT + file LICENSE"                    
ModelMetrics              "GPL (>= 2)"                            
modeltools                "GPL-2"                                 
msm                       "GPL (>= 2)"                            
multcomp                  "GPL-2"                                 
multicore                 "GPL-2"                                 
munsell                   "MIT + file LICENSE"                    
mvnormtest                "GPL"                                   
mvtnorm                   "GPL-2"                                 
natserv                   "MIT + file LICENSE"                    
ncdf4                     "GPL (>= 3)"                            
nleqslv                   "GPL (>= 2)"                            
nloptr                    "LGPL-3"                                
NLP                       "GPL-3"                                 
NMF                       "GPL (>= 2)"                            
nnls                      "GPL (>= 2)"                            
nortest                   "GPL (>= 2)"                            
numDeriv                  "GPL-2"                                 
nws                       "GPL-2"                                 
openssl                   "MIT + file LICENSE"                    
optparse                  "GPL (>= 2)"                            
pbapply                   "GPL-2"                                 
pbdZMQ                    "GPL-3"                                 
pbivnorm                  "GPL (>= 2)"                            
pbkrtest                  "GPL (>= 2)"                            
permute                   "GPL-2"                                 
phangorn                  "GPL (>= 2)"                            
pheatmap                  "GPL-2"                                 
phylobase                 "GPL (>= 2)"                            
phytools                  "GPL (>= 2)"                            
pillar                    "GPL-3"                                 
pkgconfig                 "MIT + file LICENSE"                    
pkgKitten                 "GPL (>= 2)"                            
pkgmaker                  "GPL (>= 2)"                            
plogr                     "MIT + file LICENSE"                    
plotly                    "MIT + file LICENSE"                    
plotrix                   "GPL (>= 2)"                            
plyr                      "MIT + file LICENSE"                    
png                       "GPL-2 | GPL-3"                         
polspline                 "GPL (>= 2)"                            
polyclip                  "BSL"                                   
polyCub                   "GPL-2"                                 
praise                    "MIT + file LICENSE"                    
prettyunits               "MIT + file LICENSE"                    
princurve                 "GPL-2"                                 
prodlim                   "GPL (>= 2)"                            
profileModel              "GPL (>= 2)"                            
progress                  "MIT + file LICENSE"                    
proto                     "GPL-2"                                 
PSCBS                     "GPL (>= 2)"                            
pscl                      "GPL-2"                                 
psy                       "GPL (>= 2)"                            
psych                     "GPL (>= 2)"                            
purrr                     "GPL-3 | file LICENSE"                  
pwt                       "GPL-2"                                 
pwt8                      "GPL-2 | GPL-3"                         
pwt9                      "GPL-2 | GPL-3"                         
qqman                     "GPL-3"                                 
qtl                       "GPL-3"                                 
quadprog                  "GPL (>= 2)"                            
quantmod                  "GPL-3"                                 
quantreg                  "GPL (>= 2)"                            
qvcalc                    "GPL-2 | GPL-3"                         
R.cache                   "LGPL (>= 2.1)"                         
R.methodsS3               "LGPL (>= 2.1)"                         
R.oo                      "LGPL (>= 2.1)"                         
R.utils                   "LGPL (>= 2.1)"                         
R6                        "MIT + file LICENSE"                    
RandomFields              "GPL (>= 3)"                            
RandomFieldsUtils         "GPL (>= 3)"                            
randomForest              "GPL (>= 2)"                            
RaschSampler              "GPL-2"                                 
raster                    "GPL (>= 3)"                            
Rcmdr                     "GPL (>= 2)"                            
RcmdrMisc                 "GPL (>= 2)"                            
RColorBrewer              "Apache License 2.0"                    
Rcpp                      "GPL (>= 2)"                            
RcppArmadillo             "GPL (>= 2)"                            
RcppEigen                 "GPL (>= 2) | file LICENSE"             
RcppGSL                   "GPL (>= 2)"                            
RcppRoll                  "GPL (>= 2)"                            
RCurl                     "BSD"                                   
readBrukerFlexData        "GPL (>= 3)"                            
readMzXmlData             "GPL (>= 3)"                            
readr                     "GPL (>= 2) | file LICENSE"             
readstata13               "GPL-2 | file LICENSE"                  
readxl                    "GPL-3"                                 
recipes                   "GPL-2"                                 
registry                  "GPL-2"                                 
relimp                    "GPL (>= 2)"                            
rematch                   "MIT + file LICENSE"                    
rentrez                   "MIT + file LICENSE"                    
repr                      "GPL-3"                                 
reshape                   "MIT + file LICENSE"                    
reshape2                  "MIT + file LICENSE"                    
rgenoud                   "GPL-3"                                 
rggobi                    "BSD_3_clause + file LICENSE"           
rgl                       "GPL"                                   
Rglpk                     "GPL-2 | GPL-3"                         
rglwidget                 "GPL-2"                                 
RGtk2                     "GPL"                                   
rhandsontable             "MIT + file LICENSE"                    
RInside                   "GPL (>= 2)"                            
ritis                     "MIT + file LICENSE"                    
rjags                     "GPL (== 2)"                            
rJava                     "GPL-2"                                 
rjson                     "GPL-2"                                 
RJSONIO                   "BSD_3_clause + file LICENSE"           
rlang                     "GPL-3"                                 
rlist                     "MIT + file LICENSE"                    
RLumShiny                 "GPL-3"                                 
Rmpi                      "GPL (>= 2)"                            
rms                       "GPL (>= 2)"                            
RMySQL                    "GPL-2"                                 
rncl                      "BSD_2_clause + file LICENSE"           
rneos                     "GPL (>= 2)"                            
RNetCDF                   "GPL (>= 2) | file LICENSE"             
RNeXML                    "BSD_3_clause + file LICENSE"           
rngtools                  "GPL-3"                                 
Rniftilib                 "GPL (>=2) | file LICENSE"              
robustbase                "GPL (>= 2)"                            
ROCR                      "GPL (>= 2)"                            
RODBC                     "GPL-2 | GPL-3"                         
rotl                      "BSD_2_clause + file LICENSE"           
RPostgreSQL               "GPL-2 | file LICENSE"                  
rprojroot                 "GPL-3"                                 
RProtoBuf                 "GPL (>= 2)"                            
RQuantLib                 "GPL (>= 2)"                            
rredlist                  "MIT + file LICENSE"                    
RSclient                  "GPL-2 | file LICENSE"                  
rsdmx                     "GPL (>= 2)"                            
Rserve                    "GPL-2 | file LICENSE"                  
Rsolnp                    "GPL"                                   
rsprng                    "GPL (>= 2)"                            
RSQLite                   "LGPL (>= 2)"                           
rstudioapi                "MIT + file LICENSE"                    
Rsymphony                 "EPL"                                   
RUnit                     "GPL-2"                                 
sandwich                  "GPL-2 | GPL-3"                         
scales                    "MIT + file LICENSE"                    
scatterD3                 "GPL (>= 3)"                            
scatterplot3d             "GPL-2"                                 
segmented                 "GPL"                                   
sem                       "GPL (>= 2)"                            
semTools                  "GPL (>= 2)"                            
sendmailR                 "GPL-2"                                 
seqinr                    "GPL (>= 2)"                            
seroincidence             "GPL-3"                                 
sfsmisc                   "GPL (>= 2)"                            
shape                     "GPL (>= 3)"                            
shiny                     "GPL-3 | file LICENSE"                  
shinyBS                   "GPL-3"                                 
shinydashboard            "GPL-2 | file LICENSE"                  
shinyjs                   "AGPL-3"                                
slam                      "GPL-2"                                 
sm                        "GPL (>= 2)"                            
sn                        "GPL-2 | GPL-3"                         
snow                      "GPL"                                   
SnowballC                 "BSD_2_clause + file LICENSE"           
solrium                   "MIT + file LICENSE"                    
sourcetools               "MIT + file LICENSE"                    
sp                        "GPL (>= 2)"                            
spam                      "LGPL-2"                                
SparseM                   "GPL (>= 2)"                            
spatstat                  "GPL (>= 2)"                            
spatstat.data             "GPL (>= 2)"                            
spatstat.utils            "GPL (>= 2)"                            
spc                       "GPL (>= 2)"                            
spdep                     "GPL (>= 2)"                            
stabledist                "GPL (>= 2)"                            
statmod                   "GPL-2 | GPL-3"                         
stringi                   "file LICENSE"                          
stringr                   "GPL-2 | file LICENSE"                  
strucchange               "GPL-2 | GPL-3"                         
surveillance              "GPL-2"                                 
survey                    "GPL-2 | GPL-3"                         
taxize                    "MIT + file LICENSE"                    
tcltk2                    "LGPL-3 + file LICENSE"                 
TeachingDemos             "Artistic-2.0"                          
tensor                    "GPL (>= 2)"                            
testit                    "GPL"                                   
testthat                  "MIT + file LICENSE"                    
tgp                       "LGPL"                                  
TH.data                   "GPL-3"                                 
tibble                    "MIT + file LICENSE"                    
tidyr                     "MIT + file LICENSE"                    
tidyselect                "GPL-3"                                 
tikzDevice                "GPL (>= 2)"                            
timeDate                  "GPL (>= 2)"                            
timeSeries                "GPL (>= 2)"                            
tkrplot                   "GPL"                                   
tm                        "GPL-3"                                 
treescape                 "GPL (>= 2)"                            
treespace                 "MIT + file LICENSE"                    
triebeard                 "MIT + file LICENSE"                    
truncdist                 "GPL (>= 2)"                            
truncnorm                 "GPL-2"                                 
tseries                   "GPL-2"                                 
TTR                       "GPL-2"                                 
urca                      "GPL (>= 2)"                            
urltools                  "MIT + file LICENSE"                    
utf8                      "Apache License (== 2.0) | file LICENSE"
uuid                      "MIT + file LICENSE"                    
V8                        "MIT + file LICENSE"                    
vcd                       "GPL-2"                                 
vcdExtra                  "GPL (>= 2)"                            
vegan                     "GPL-2"                                 
VGAM                      "GPL-3"                                 
vioplot                   "BSD"                                   
viridis                   "MIT + file LICENSE"                    
viridisLite               "MIT + file LICENSE"                    
WDI                       "GPL-3"                                 
webmockr                  "MIT + file LICENSE"                    
whisker                   "GPL-3"                                 
WikidataR                 "MIT + file LICENSE"                    
WikipediR                 "MIT + file LICENSE"                    
wikitaxa                  "MIT + file LICENSE"                    
withr                     "GPL (>= 2)"                            
wordcloud                 "LGPL-2.1"                              
worrms                    "MIT + file LICENSE"                    
XML                       "BSD_2_clause + file LICENSE"           
xml2                      "GPL (>= 2)"                            
XMLRPC                    "BSD"                                   
xtable                    "GPL (>= 2)"                            
xts                       "GPL (>= 2)"                            
yaml                      "BSD_3_clause + file LICENSE"           
Zelig                     "GPL (>= 3)"                            
zoo                       "GPL-2 | GPL-3"                         
base                      "Part of R 3.4.4"                       
boot                      "Unlimited"                             
class                     "GPL-2 | GPL-3"                         
cluster                   "GPL (>= 2)"                            
codetools                 "GPL"                                   
compiler                  "Part of R 3.4.4"                       
datasets                  "Part of R 3.4.4"                       
foreign                   "GPL (>= 2)"                            
graphics                  "Part of R 3.4.4"                       
grDevices                 "Part of R 3.4.4"                       
grid                      "Part of R 3.4.4"                       
KernSmooth                "Unlimited"                             
lattice                   "GPL (>= 2)"                            
MASS                      "GPL-2 | GPL-3"                         
Matrix                    "GPL (>= 2) | file LICENCE"             
methods                   "Part of R 3.4.4"                       
mgcv                      "GPL (>= 2)"                            
nlme                      "GPL (>= 2) | file LICENCE"             
nnet                      "GPL-2 | GPL-3"                         
parallel                  "Part of R 3.4.4"                       
rpart                     "GPL-2 | GPL-3"                         
spatial                   "GPL-2 | GPL-3"                         
splines                   "Part of R 3.4.4"                       
stats                     "Part of R 3.4.4"                       
stats4                    "Part of R 3.4.4"                       
survival                  "LGPL (>= 2)"                           
tcltk                     "Part of R 3.4.4"                       
tools                     "Part of R 3.4.4"                       
utils                     "Part of R 3.4.4"                       
                          License_is_FOSS License_restricts_use OS_type
abind                     NA              NA                    NA     
acepack                   NA              NA                    NA     
adabag                    NA              NA                    NA     
alabama                   NA              NA                    NA     
alluvial                  NA              NA                    NA     
askpass                   NA              NA                    NA     
assertthat                NA              NA                    NA     
backports                 NA              NA                    NA     
base64enc                 NA              NA                    NA     
bgmfiles                  NA              NA                    NA     
BH                        NA              NA                    NA     
bibliometrix              NA              NA                    NA     
bibtex                    NA              NA                    NA     
BiocGenerics              NA              NA                    NA     
BiocInstaller             NA              NA                    NA     
bit                       NA              NA                    NA     
bit64                     NA              NA                    NA     
bitops                    NA              NA                    NA     
blob                      NA              NA                    NA     
bookdown                  NA              NA                    NA     
brew                      NA              NA                    NA     
broom                     NA              NA                    NA     
callr                     NA              NA                    NA     
car                       NA              NA                    NA     
carData                   NA              NA                    NA     
caTools                   NA              NA                    NA     
cellranger                NA              NA                    NA     
checkmate                 NA              NA                    NA     
classInt                  NA              NA                    NA     
cli                       NA              NA                    NA     
clipr                     NA              NA                    NA     
colorspace                NA              NA                    NA     
corrplot                  NA              NA                    NA     
cowplot                   NA              NA                    NA     
crayon                    NA              NA                    NA     
crosstalk                 NA              NA                    NA     
crul                      NA              NA                    NA     
csvread                   NA              NA                    NA     
Cubist                    NA              NA                    NA     
curl                      NA              NA                    NA     
data.table                NA              NA                    NA     
data.tree                 NA              NA                    NA     
DBI                       NA              NA                    NA     
dendextend                NA              NA                    NA     
DEoptim                   NA              NA                    NA     
DiagrammeR                NA              NA                    NA     
digest                    NA              NA                    NA     
downloader                NA              NA                    NA     
dplyr                     NA              NA                    NA     
DT                        NA              NA                    NA     
dygraphs                  NA              NA                    NA     
e1071                     NA              NA                    NA     
ECOSolveR                 NA              NA                    NA     
eha                       NA              NA                    NA     
ellipsis                  NA              NA                    NA     
evaluate                  NA              NA                    NA     
expm                      NA              NA                    NA     
extrafont                 NA              NA                    NA     
extrafontdb               NA              NA                    NA     
factoextra                NA              NA                    NA     
FactoMineR                NA              NA                    NA     
fansi                     NA              NA                    NA     
farver                    NA              NA                    NA     
fastmatch                 NA              NA                    NA     
FinCal                    NA              NA                    NA     
fitdistrplus              NA              NA                    NA     
flexdashboard             NA              NA                    NA     
forcats                   NA              NA                    NA     
foreign                   NA              NA                    NA     
Formula                   NA              NA                    NA     
fs                        NA              NA                    NA     
gbRd                      NA              NA                    NA     
gdalUtils                 NA              NA                    NA     
gdtools                   NA              NA                    NA     
genalg                    NA              NA                    NA     
generics                  NA              NA                    NA     
geojsonR                  NA              NA                    NA     
geosphere                 NA              NA                    NA     
gepaf                     NA              NA                    NA     
ggforce                   NA              NA                    NA     
ggmap                     NA              NA                    NA     
ggplot2                   NA              NA                    NA     
ggpubr                    NA              NA                    NA     
ggraph                    NA              NA                    NA     
ggrepel                   NA              NA                    NA     
ggsci                     NA              NA                    NA     
ggsignif                  NA              NA                    NA     
gistr                     NA              NA                    NA     
globalOptTests            NA              NA                    NA     
glue                      NA              NA                    NA     
graph                     NA              NA                    NA     
gridExtra                 NA              NA                    NA     
gtable                    NA              NA                    NA     
gWidgets                  NA              NA                    NA     
gWidgetsRGtk2             NA              NA                    NA     
haven                     NA              NA                    NA     
highr                     NA              NA                    NA     
Hmisc                     NA              NA                    NA     
hms                       NA              NA                    NA     
htmlTable                 NA              NA                    NA     
htmltools                 NA              NA                    NA     
htmlwidgets               NA              NA                    NA     
httpcode                  NA              NA                    NA     
httpuv                    NA              NA                    NA     
httr                      NA              NA                    NA     
hunspell                  NA              NA                    NA     
igraph                    NA              NA                    NA     
influenceR                NA              NA                    NA     
isoband                   NA              NA                    NA     
ISOcodes                  NA              NA                    NA     
janeaustenr               NA              NA                    NA     
jpeg                      NA              NA                    NA     
jsonlite                  NA              NA                    NA     
kernlab                   NA              NA                    NA     
kknn                      NA              NA                    NA     
knitr                     NA              NA                    NA     
labeling                  NA              NA                    NA     
labelled                  NA              NA                    NA     
later                     NA              NA                    NA     
latticeExtra              NA              NA                    NA     
lazyeval                  NA              NA                    NA     
leaflet                   NA              NA                    NA     
leaflet.extras            NA              NA                    NA     
leafpop                   NA              NA                    NA     
lme4                      NA              NA                    NA     
lmtest                    NA              NA                    NA     
lpSolve                   NA              NA                    NA     
lpSolveAPI                NA              NA                    NA     
lsei                      NA              NA                    NA     
lubridate                 NA              NA                    NA     
magrittr                  NA              NA                    NA     
maps                      NA              NA                    NA     
maptools                  NA              NA                    NA     
markdown                  NA              NA                    NA     
MatrixModels              NA              NA                    NA     
matrixStats               NA              NA                    NA     
mc2d                      NA              NA                    NA     
mclust                    NA              NA                    NA     
mco                       NA              NA                    NA     
mda                       NA              NA                    NA     
memoise                   NA              NA                    NA     
mime                      NA              NA                    NA     
minqa                     NA              NA                    NA     
mlogit                    NA              NA                    NA     
modelr                    NA              NA                    NA     
modeltools                NA              NA                    NA     
munsell                   NA              NA                    NA     
nabor                     NA              NA                    NA     
network                   NA              NA                    NA     
networkD3                 NA              NA                    NA     
nloptr                    NA              NA                    NA     
NLP                       NA              NA                    NA     
npsurv                    NA              NA                    NA     
opencage                  NA              NA                    NA     
openssl                   NA              NA                    NA     
openxlsx                  NA              NA                    NA     
optimx                    NA              NA                    NA     
osmar                     NA              NA                    NA     
packrat                   NA              NA                    NA     
party                     NA              NA                    NA     
pbkrtest                  NA              NA                    NA     
PerformanceAnalytics      NA              NA                    NA     
pillar                    NA              NA                    NA     
pkgconfig                 NA              NA                    NA     
plogr                     NA              NA                    NA     
plotly                    NA              NA                    NA     
pls                       NA              NA                    NA     
plyr                      NA              NA                    NA     
png                       NA              NA                    NA     
polyclip                  NA              NA                    NA     
polynom                   NA              NA                    NA     
prettyunits               NA              NA                    NA     
processx                  NA              NA                    NA     
progress                  NA              NA                    NA     
promises                  NA              NA                    NA     
pryr                      NA              NA                    NA     
ps                        NA              NA                    NA     
purrr                     NA              NA                    NA     
qcc                       NA              NA                    NA     
qmap                      NA              NA                    NA     
qualityTools              NA              NA                    NA     
quantmod                  NA              NA                    NA     
quantreg                  NA              NA                    NA     
questionr                 NA              NA                    NA     
R.methodsS3               NA              NA                    NA     
R.oo                      NA              NA                    NA     
R.utils                   NA              NA                    NA     
R6                        NA              NA                    NA     
raster                    NA              NA                    NA     
rbgm                      NA              NA                    NA     
rbokeh                    NA              NA                    NA     
rCarto                    NA              NA                    NA     
RColorBrewer              NA              NA                    NA     
Rcpp                      NA              NA                    NA     
RcppArmadillo             NA              NA                    NA     
RcppEigen                 NA              NA                    NA     
RcppParallel              NA              NA                    NA     
RCurl                     NA              NA                    NA     
Rdpack                    NA              NA                    NA     
readr                     NA              NA                    NA     
readxl                    NA              NA                    NA     
rematch                   NA              NA                    NA     
reprex                    NA              NA                    NA     
reshape2                  NA              NA                    NA     
reticulate                NA              NA                    NA     
rgdal                     NA              NA                    NA     
rgeos                     NA              NA                    NA     
rgexf                     NA              NA                    NA     
RgoogleMaps               NA              NA                    NA     
RGraphics                 NA              NA                    NA     
Rgraphviz                 NA              NA                    NA     
rio                       NA              NA                    NA     
RISmed                    NA              NA                    NA     
RJSONIO                   NA              NA                    NA     
rlang                     NA              NA                    NA     
rmarkdown                 NA              NA                    NA     
rmdformats                NA              NA                    NA     
rminer                    NA              NA                    NA     
ROI                       NA              NA                    NA     
ROI.models.globalOptTests NA              NA                    NA     
ROI.models.miplib         NA              NA                    NA     
ROI.models.netlib         NA              NA                    NA     
ROI.plugin.alabama        NA              NA                    NA     
ROI.plugin.deoptim        NA              NA                    NA     
ROI.plugin.ecos           NA              NA                    NA     
ROI.plugin.glpk           NA              NA                    NA     
ROI.plugin.ipop           NA              NA                    NA     
ROI.plugin.lpsolve        NA              NA                    NA     
ROI.plugin.msbinlp        NA              NA                    NA     
ROI.plugin.neos           NA              NA                    NA     
ROI.plugin.optimx         NA              NA                    NA     
Rook                      NA              NA                    NA     
rprojroot                 NA              NA                    NA     
RQDA                      NA              NA                    NA     
rriskDistributions        NA              NA                    NA     
rsconnect                 NA              NA                    NA     
rscopus                   NA              NA                    NA     
RSpectra                  NA              NA                    NA     
RSQLite                   NA              NA                    NA     
rstudioapi                NA              NA                    NA     
RTriangle                 NA              NA                    NA     
Rttf2pt1                  "yes"           NA                    NA     
rtweet                    NA              NA                    NA     
rvest                     NA              NA                    NA     
sandwich                  NA              NA                    NA     
satellite                 NA              NA                    NA     
scales                    NA              NA                    NA     
scatterplot3d             NA              NA                    NA     
selectr                   NA              NA                    NA     
sf                        NA              NA                    NA     
shiny                     NA              NA                    NA     
shinycssloaders           NA              NA                    NA     
shinythemes               NA              NA                    NA     
simmer                    NA              NA                    NA     
simmer.plot               NA              NA                    NA     
SixSigma                  NA              NA                    NA     
SnowballC                 NA              NA                    NA     
sourcetools               NA              NA                    NA     
sp                        NA              NA                    NA     
spacyr                    NA              NA                    NA     
SparseM                   NA              NA                    NA     
spData                    NA              NA                    NA     
spDataLarge               NA              NA                    NA     
statmod                   NA              NA                    NA     
stopwords                 NA              NA                    NA     
stringdist                NA              NA                    NA     
stringi                   "yes"           NA                    NA     
stringr                   NA              NA                    NA     
strucchange               NA              NA                    NA     
survival                  NA              NA                    NA     
svglite                   NA              NA                    NA     
sys                       NA              NA                    NA     
TH.data                   NA              NA                    NA     
tibble                    NA              NA                    NA     
tictoc                    NA              NA                    NA     
tidyr                     NA              NA                    NA     
tidyselect                NA              NA                    NA     
tidytext                  NA              NA                    NA     
tidyverse                 NA              NA                    NA     
timevis                   NA              NA                    NA     
tinytex                   NA              NA                    NA     
tm                        NA              NA                    NA     
tokenizers                NA              NA                    NA     
triebeard                 NA              NA                    NA     
tweenr                    NA              NA                    NA     
twitteR                   NA              NA                    NA     
units                     NA              NA                    NA     
urltools                  NA              NA                    NA     
utf8                      NA              NA                    NA     
vctrs                     NA              NA                    NA     
viridis                   NA              NA                    NA     
viridisLite               NA              NA                    NA     
visNetwork                NA              NA                    NA     
webshot                   NA              NA                    NA     
widyr                     NA              NA                    NA     
withr                     NA              NA                    NA     
wordcloud                 NA              NA                    NA     
xfun                      NA              NA                    NA     
xgboost                   NA              NA                    NA     
XML                       NA              NA                    NA     
xmlrpc2                   NA              NA                    NA     
xtable                    NA              NA                    NA     
yaml                      NA              NA                    NA     
zeallot                   NA              NA                    NA     
zip                       NA              NA                    NA     
zoo                       NA              NA                    NA     
eha                       NA              NA                    NA     
mc2d                      NA              NA                    NA     
rriskDistributions        NA              NA                    NA     
survival                  NA              NA                    NA     
abind                     NA              NA                    NA     
acepack                   NA              NA                    NA     
ade4                      NA              NA                    NA     
adegenet                  NA              NA                    NA     
adegraphics               NA              NA                    NA     
adephylo                  NA              NA                    NA     
AER                       NA              NA                    NA     
afex                      NA              NA                    NA     
Amelia                    NA              NA                    NA     
AMORE                     NA              NA                    NA     
animation                 NA              NA                    NA     
ape                       NA              NA                    NA     
arm                       NA              NA                    NA     
aroma.light               NA              NA                    NA     
assertthat                NA              NA                    NA     
backports                 NA              NA                    NA     
base64enc                 NA              NA                    NA     
BatchJobs                 NA              NA                    NA     
BayesFactor               NA              NA                    NA     
bayesm                    NA              NA                    NA     
BBmisc                    NA              NA                    NA     
bbmle                     NA              NA                    NA     
beeswarm                  NA              NA                    NA     
BiasedUrn                 NA              NA                    NA     
bindr                     NA              NA                    NA     
bindrcpp                  NA              NA                    NA     
bio3d                     NA              NA                    NA     
bit                       NA              NA                    NA     
bit64                     NA              NA                    NA     
bitops                    NA              NA                    NA     
blob                      NA              NA                    NA     
blockmodeling             NA              NA                    NA     
BMS                       NA              NA                    NA     
bold                      NA              NA                    NA     
BoolNet                   NA              NA                    NA     
BradleyTerry2             NA              NA                    NA     
brew                      NA              NA                    NA     
brglm                     NA              NA                    NA     
broom                     NA              NA                    NA     
ca                        NA              NA                    NA     
Cairo                     NA              NA                    NA     
cairoDevice               NA              NA                    NA     
calibrate                 NA              NA                    NA     
car                       NA              NA                    NA     
carData                   NA              NA                    NA     
caret                     NA              NA                    NA     
caTools                   NA              NA                    NA     
cellranger                NA              NA                    NA     
checkmate                 NA              NA                    NA     
chron                     NA              NA                    NA     
cli                       NA              NA                    NA     
clusterGeneration         NA              NA                    NA     
cmprsk                    NA              NA                    NA     
coda                      NA              NA                    NA     
coin                      NA              NA                    NA     
colorspace                NA              NA                    NA     
combinat                  NA              NA                    NA     
contfrac                  NA              NA                    NA     
conting                   NA              NA                    NA     
corpcor                   NA              NA                    NA     
crayon                    NA              NA                    NA     
crosstalk                 NA              NA                    NA     
crul                      NA              NA                    NA     
cubature                  NA              NA                    NA     
curl                      NA              NA                    NA     
CVST                      NA              NA                    NA     
data.table                NA              NA                    NA     
date                      NA              NA                    NA     
DBI                       NA              NA                    NA     
DBItest                   NA              NA                    NA     
dbplyr                    NA              NA                    NA     
ddalpha                   NA              NA                    NA     
deal                      NA              NA                    NA     
deldir                    NA              NA                    NA     
DEoptimR                  NA              NA                    NA     
desc                      NA              NA                    NA     
deSolve                   NA              NA                    NA     
devtools                  NA              NA                    NA     
DiagnosisMed              NA              NA                    NA     
dichromat                 NA              NA                    NA     
digest                    NA              NA                    NA     
dimRed                    NA              NA                    NA     
distory                   NA              NA                    NA     
DNAcopy                   NA              NA                    NA     
doMC                      NA              NA                    NA     
doParallel                NA              NA                    NA     
DoseFinding               NA              NA                    NA     
doSNOW                    NA              NA                    NA     
dotCall64                 NA              NA                    NA     
downloader                NA              NA                    NA     
dplyr                     NA              NA                    NA     
DRR                       NA              NA                    NA     
DT                        NA              NA                    NA     
dynlm                     NA              NA                    NA     
e1071                     NA              NA                    NA     
eco                       NA              NA                    NA     
ecodist                   NA              NA                    NA     
effects                   NA              NA                    NA     
ellipse                   NA              NA                    NA     
elliptic                  NA              NA                    NA     
energy                    NA              NA                    NA     
Epi                       NA              NA                    NA     
epibasix                  NA              NA                    NA     
epicalc                   NA              NA                    NA     
epiR                      NA              NA                    NA     
epitools                  NA              NA                    NA     
eRm                       NA              NA                    NA     
estimability              NA              NA                    NA     
etm                       NA              NA                    NA     
evaluate                  NA              NA                    NA     
evd                       NA              NA                    NA     
expm                      NA              NA                    NA     
FactoMineR                NA              NA                    NA     
fail                      NA              NA                    NA     
fAsianOptions             NA              NA                    NA     
fAssets                   NA              NA                    NA     
fastcluster               NA              NA                    NA     
fastICA                   NA              NA                    NA     
fastmatch                 NA              NA                    NA     
fBasics                   NA              NA                    NA     
fBonds                    NA              NA                    NA     
fCopulae                  NA              NA                    NA     
fExoticOptions            NA              NA                    NA     
fExtremes                 NA              NA                    NA     
fGarch                    NA              NA                    NA     
fields                    NA              NA                    NA     
filehash                  NA              NA                    NA     
fImport                   NA              NA                    NA     
fitbitScraper             NA              NA                    NA     
fitcoach                  NA              NA                    NA     
flashClust                NA              NA                    NA     
fMultivar                 NA              NA                    NA     
fNonlinear                NA              NA                    NA     
fOptions                  NA              NA                    NA     
forcats                   NA              NA                    NA     
foreach                   NA              NA                    NA     
formatR                   NA              NA                    NA     
Formula                   NA              NA                    NA     
fPortfolio                NA              NA                    NA     
fRegression               NA              NA                    NA     
fTrading                  NA              NA                    NA     
fUnitRoots                NA              NA                    NA     
futile.logger             NA              NA                    NA     
futile.options            NA              NA                    NA     
future                    NA              NA                    NA     
g.data                    NA              NA                    NA     
gam                       NA              NA                    NA     
gbm                       NA              NA                    NA     
gdata                     NA              NA                    NA     
geepack                   NA              NA                    NA     
GenABEL                   NA              NA                    NA     
GenABEL.data              NA              NA                    NA     
genetics                  NA              NA                    NA     
getopt                    NA              NA                    NA     
ggplot2                   NA              NA                    NA     
ggvis                     NA              NA                    NA     
git2r                     NA              NA                    NA     
glmnet                    NA              NA                    NA     
globals                   NA              NA                    NA     
glue                      NA              NA                    NA     
gmaps                     NA              NA                    NA     
gmodels                   NA              NA                    NA     
gnm                       NA              NA                    NA     
goftest                   NA              NA                    NA     
googleVis                 NA              NA                    NA     
gower                     NA              NA                    NA     
gplots                    NA              NA                    NA     
gregmisc                  NA              NA                    NA     
gridBase                  NA              NA                    NA     
gridExtra                 NA              NA                    NA     
gsl                       NA              NA                    NA     
gss                       NA              NA                    NA     
gtable                    NA              NA                    NA     
gtools                    NA              NA                    NA     
Guerry                    NA              NA                    NA     
haplo.stats               NA              NA                    NA     
haven                     NA              NA                    NA     
hdf5                      NA              NA                    NA     
hexbin                    NA              NA                    NA     
highr                     NA              NA                    NA     
Hmisc                     NA              NA                    NA     
hms                       NA              NA                    NA     
htmlTable                 NA              NA                    NA     
htmltools                 NA              NA                    NA     
htmlwidgets               NA              NA                    NA     
httpcode                  NA              NA                    NA     
httpuv                    NA              NA                    NA     
httr                      NA              NA                    NA     
hwriter                   NA              NA                    NA     
hypergeo                  NA              NA                    NA     
igraph                    NA              NA                    NA     
inline                    NA              NA                    NA     
int64                     NA              NA                    NA     
ipred                     NA              NA                    NA     
irlba                     NA              NA                    NA     
ISOcodes                  NA              NA                    NA     
ISOweek                   NA              NA                    NA     
iterators                 NA              NA                    NA     
its                       NA              NA                    NA     
jsonlite                  NA              NA                    NA     
kernlab                   NA              NA                    NA     
knitr                     NA              NA                    NA     
labeling                  NA              NA                    NA     
lambda.r                  NA              NA                    NA     
latticeExtra              NA              NA                    NA     
lava                      NA              NA                    NA     
lavaan                    NA              NA                    NA     
lazyeval                  NA              NA                    NA     
leaps                     NA              NA                    NA     
LearnBayes                NA              NA                    NA     
lexRankr                  NA              NA                    NA     
lhs                       NA              NA                    NA     
listenv                   NA              NA                    NA     
littler                   NA              NA                    "unix" 
lme4                      NA              NA                    NA     
lmerTest                  NA              NA                    NA     
lmtest                    NA              NA                    NA     
logspline                 NA              NA                    NA     
lpSolve                   NA              NA                    NA     
lsmeans                   NA              NA                    NA     
lubridate                 NA              NA                    NA     
Luminescence              NA              NA                    NA     
magrittr                  NA              NA                    NA     
MALDIquant                NA              NA                    NA     
MALDIquantForeign         NA              NA                    NA     
mapdata                   NA              NA                    NA     
mapproj                   NA              NA                    NA     
maps                      NA              NA                    NA     
maptools                  NA              NA                    NA     
maptree                   NA              NA                    NA     
markdown                  NA              NA                    NA     
Matching                  NA              NA                    NA     
MatchIt                   NA              NA                    NA     
matrixcalc                NA              NA                    NA     
MatrixModels              NA              NA                    NA     
matrixStats               NA              NA                    NA     
maxLik                    NA              NA                    NA     
mclust                    NA              NA                    NA     
mcmc                      NA              NA                    NA     
MCMCpack                  NA              NA                    NA     
medAdherence              NA              NA                    NA     
memoise                   NA              NA                    NA     
mFilter                   NA              NA                    NA     
mi                        NA              NA                    NA     
mime                      NA              NA                    NA     
miniUI                    NA              NA                    NA     
minpack.lm                NA              NA                    NA     
minqa                     NA              NA                    NA     
misc3d                    NA              NA                    NA     
miscTools                 NA              NA                    NA     
mixtools                  NA              NA                    NA     
mlbench                   NA              NA                    NA     
mlmRev                    NA              NA                    NA     
mnormt                    NA              NA                    NA     
MNP                       NA              NA                    NA     
mockery                   NA              NA                    NA     
ModelMetrics              NA              NA                    NA     
modeltools                NA              NA                    NA     
msm                       NA              NA                    NA     
multcomp                  NA              NA                    NA     
multicore                 NA              NA                    "unix" 
munsell                   NA              NA                    NA     
mvnormtest                NA              NA                    NA     
mvtnorm                   NA              NA                    NA     
natserv                   NA              NA                    NA     
ncdf4                     NA              NA                    NA     
nleqslv                   NA              NA                    NA     
nloptr                    NA              NA                    NA     
NLP                       NA              NA                    NA     
NMF                       NA              NA                    NA     
nnls                      NA              NA                    NA     
nortest                   NA              NA                    NA     
numDeriv                  NA              NA                    NA     
nws                       NA              NA                    NA     
openssl                   NA              NA                    NA     
optparse                  NA              NA                    NA     
pbapply                   NA              NA                    NA     
pbdZMQ                    NA              NA                    NA     
pbivnorm                  NA              NA                    NA     
pbkrtest                  NA              NA                    NA     
permute                   NA              NA                    NA     
phangorn                  NA              NA                    NA     
pheatmap                  NA              NA                    NA     
phylobase                 NA              NA                    NA     
phytools                  NA              NA                    NA     
pillar                    NA              NA                    NA     
pkgconfig                 NA              NA                    NA     
pkgKitten                 NA              NA                    NA     
pkgmaker                  NA              NA                    NA     
plogr                     NA              NA                    NA     
plotly                    NA              NA                    NA     
plotrix                   NA              NA                    NA     
plyr                      NA              NA                    NA     
png                       NA              NA                    NA     
polspline                 NA              NA                    NA     
polyclip                  NA              NA                    NA     
polyCub                   NA              NA                    NA     
praise                    NA              NA                    NA     
prettyunits               NA              NA                    NA     
princurve                 NA              NA                    NA     
prodlim                   NA              NA                    NA     
profileModel              NA              NA                    NA     
progress                  NA              NA                    NA     
proto                     NA              NA                    NA     
PSCBS                     NA              NA                    NA     
pscl                      NA              NA                    NA     
psy                       NA              NA                    NA     
psych                     NA              NA                    NA     
purrr                     NA              NA                    NA     
pwt                       NA              NA                    NA     
pwt8                      NA              NA                    NA     
pwt9                      NA              NA                    NA     
qqman                     NA              NA                    NA     
qtl                       NA              NA                    NA     
quadprog                  NA              NA                    NA     
quantmod                  NA              NA                    NA     
quantreg                  NA              NA                    NA     
qvcalc                    NA              NA                    NA     
R.cache                   NA              NA                    NA     
R.methodsS3               NA              NA                    NA     
R.oo                      NA              NA                    NA     
R.utils                   NA              NA                    NA     
R6                        NA              NA                    NA     
RandomFields              NA              NA                    NA     
RandomFieldsUtils         NA              NA                    NA     
randomForest              NA              NA                    NA     
RaschSampler              NA              NA                    NA     
raster                    NA              NA                    NA     
Rcmdr                     NA              NA                    NA     
RcmdrMisc                 NA              NA                    NA     
RColorBrewer              NA              NA                    NA     
Rcpp                      NA              NA                    NA     
RcppArmadillo             NA              NA                    NA     
RcppEigen                 NA              NA                    NA     
RcppGSL                   NA              NA                    NA     
RcppRoll                  NA              NA                    NA     
RCurl                     NA              NA                    NA     
readBrukerFlexData        NA              NA                    NA     
readMzXmlData             NA              NA                    NA     
readr                     NA              NA                    NA     
readstata13               NA              NA                    NA     
readxl                    NA              NA                    NA     
recipes                   NA              NA                    NA     
registry                  NA              NA                    NA     
relimp                    NA              NA                    NA     
rematch                   NA              NA                    NA     
rentrez                   NA              NA                    NA     
repr                      NA              NA                    NA     
reshape                   NA              NA                    NA     
reshape2                  NA              NA                    NA     
rgenoud                   NA              NA                    NA     
rggobi                    NA              NA                    NA     
rgl                       NA              NA                    NA     
Rglpk                     NA              NA                    NA     
rglwidget                 NA              NA                    NA     
RGtk2                     NA              NA                    NA     
rhandsontable             NA              NA                    NA     
RInside                   NA              NA                    NA     
ritis                     NA              NA                    NA     
rjags                     NA              NA                    NA     
rJava                     NA              NA                    NA     
rjson                     NA              NA                    NA     
RJSONIO                   NA              NA                    NA     
rlang                     NA              NA                    NA     
rlist                     NA              NA                    NA     
RLumShiny                 NA              NA                    NA     
Rmpi                      NA              NA                    NA     
rms                       NA              NA                    NA     
RMySQL                    NA              NA                    NA     
rncl                      NA              NA                    NA     
rneos                     NA              NA                    NA     
RNetCDF                   NA              NA                    NA     
RNeXML                    NA              NA                    NA     
rngtools                  NA              NA                    NA     
Rniftilib                 NA              NA                    NA     
robustbase                NA              NA                    NA     
ROCR                      NA              NA                    NA     
RODBC                     NA              NA                    NA     
rotl                      NA              NA                    NA     
RPostgreSQL               NA              NA                    NA     
rprojroot                 NA              NA                    NA     
RProtoBuf                 NA              NA                    NA     
RQuantLib                 NA              NA                    "unix" 
rredlist                  NA              NA                    NA     
RSclient                  NA              NA                    NA     
rsdmx                     NA              NA                    NA     
Rserve                    NA              NA                    NA     
Rsolnp                    NA              NA                    NA     
rsprng                    NA              NA                    NA     
RSQLite                   NA              NA                    NA     
rstudioapi                NA              NA                    NA     
Rsymphony                 NA              NA                    NA     
RUnit                     NA              NA                    NA     
sandwich                  NA              NA                    NA     
scales                    NA              NA                    NA     
scatterD3                 NA              NA                    NA     
scatterplot3d             NA              NA                    NA     
segmented                 NA              NA                    NA     
sem                       NA              NA                    NA     
semTools                  NA              NA                    NA     
sendmailR                 NA              NA                    NA     
seqinr                    NA              NA                    NA     
seroincidence             NA              NA                    NA     
sfsmisc                   NA              NA                    NA     
shape                     NA              NA                    NA     
shiny                     NA              NA                    NA     
shinyBS                   NA              NA                    NA     
shinydashboard            NA              NA                    NA     
shinyjs                   NA              NA                    NA     
slam                      NA              NA                    NA     
sm                        NA              NA                    NA     
sn                        NA              NA                    NA     
snow                      NA              NA                    NA     
SnowballC                 NA              NA                    NA     
solrium                   NA              NA                    NA     
sourcetools               NA              NA                    NA     
sp                        NA              NA                    NA     
spam                      NA              NA                    NA     
SparseM                   NA              NA                    NA     
spatstat                  NA              NA                    NA     
spatstat.data             NA              NA                    NA     
spatstat.utils            NA              NA                    NA     
spc                       NA              NA                    NA     
spdep                     NA              NA                    NA     
stabledist                NA              NA                    NA     
statmod                   NA              NA                    NA     
stringi                   "yes"           NA                    NA     
stringr                   NA              NA                    NA     
strucchange               NA              NA                    NA     
surveillance              NA              NA                    NA     
survey                    NA              NA                    NA     
taxize                    NA              NA                    NA     
tcltk2                    NA              NA                    NA     
TeachingDemos             NA              NA                    NA     
tensor                    NA              NA                    NA     
testit                    NA              NA                    NA     
testthat                  NA              NA                    NA     
tgp                       NA              NA                    NA     
TH.data                   NA              NA                    NA     
tibble                    NA              NA                    NA     
tidyr                     NA              NA                    NA     
tidyselect                NA              NA                    NA     
tikzDevice                NA              NA                    NA     
timeDate                  NA              NA                    NA     
timeSeries                NA              NA                    NA     
tkrplot                   NA              NA                    NA     
tm                        NA              NA                    NA     
treescape                 NA              NA                    NA     
treespace                 NA              NA                    NA     
triebeard                 NA              NA                    NA     
truncdist                 NA              NA                    NA     
truncnorm                 NA              NA                    NA     
tseries                   NA              NA                    NA     
TTR                       NA              NA                    NA     
urca                      NA              NA                    NA     
urltools                  NA              NA                    NA     
utf8                      NA              NA                    NA     
uuid                      NA              NA                    NA     
V8                        NA              NA                    NA     
vcd                       NA              NA                    NA     
vcdExtra                  NA              NA                    NA     
vegan                     NA              NA                    NA     
VGAM                      NA              NA                    NA     
vioplot                   NA              NA                    NA     
viridis                   NA              NA                    NA     
viridisLite               NA              NA                    NA     
WDI                       NA              NA                    NA     
webmockr                  NA              NA                    NA     
whisker                   NA              NA                    NA     
WikidataR                 NA              NA                    NA     
WikipediR                 NA              NA                    NA     
wikitaxa                  NA              NA                    NA     
withr                     NA              NA                    NA     
wordcloud                 NA              NA                    NA     
worrms                    NA              NA                    NA     
XML                       NA              NA                    NA     
xml2                      NA              NA                    NA     
XMLRPC                    NA              NA                    NA     
xtable                    NA              NA                    NA     
xts                       NA              NA                    NA     
yaml                      NA              NA                    NA     
Zelig                     NA              NA                    NA     
zoo                       NA              NA                    NA     
base                      NA              NA                    NA     
boot                      NA              NA                    NA     
class                     NA              NA                    NA     
cluster                   NA              NA                    NA     
codetools                 NA              NA                    NA     
compiler                  NA              NA                    NA     
datasets                  NA              NA                    NA     
foreign                   NA              NA                    NA     
graphics                  NA              NA                    NA     
grDevices                 NA              NA                    NA     
grid                      NA              NA                    NA     
KernSmooth                NA              NA                    NA     
lattice                   NA              NA                    NA     
MASS                      NA              NA                    NA     
Matrix                    NA              NA                    NA     
methods                   NA              NA                    NA     
mgcv                      NA              NA                    NA     
nlme                      NA              NA                    NA     
nnet                      NA              NA                    NA     
parallel                  NA              NA                    NA     
rpart                     NA              NA                    NA     
spatial                   NA              NA                    NA     
splines                   NA              NA                    NA     
stats                     NA              NA                    NA     
stats4                    NA              NA                    NA     
survival                  NA              NA                    NA     
tcltk                     NA              NA                    NA     
tools                     NA              NA                    NA     
utils                     NA              NA                    NA     
                          MD5sum NeedsCompilation Built  
abind                     NA     "no"             "3.4.4"
acepack                   NA     "yes"            "3.4.4"
adabag                    NA     "no"             "3.4.4"
alabama                   NA     "no"             "3.4.4"
alluvial                  NA     "no"             "3.4.4"
askpass                   NA     "yes"            "3.4.4"
assertthat                NA     "no"             "3.4.4"
backports                 NA     "yes"            "3.4.4"
base64enc                 NA     "yes"            "3.4.4"
bgmfiles                  NA     "no"             "3.4.4"
BH                        NA     "no"             "3.4.4"
bibliometrix              NA     "no"             "3.4.4"
bibtex                    NA     "yes"            "3.4.4"
BiocGenerics              NA     "no"             "3.4.4"
BiocInstaller             NA     "no"             "3.4.4"
bit                       NA     "yes"            "3.4.4"
bit64                     NA     "yes"            "3.4.4"
bitops                    NA     "yes"            "3.4.4"
blob                      NA     "no"             "3.4.4"
bookdown                  NA     "no"             "3.4.4"
brew                      NA     NA               "3.4.4"
broom                     NA     "no"             "3.4.4"
callr                     NA     "no"             "3.4.4"
car                       NA     "no"             "3.4.4"
carData                   NA     "no"             "3.4.4"
caTools                   NA     "yes"            "3.4.4"
cellranger                NA     "no"             "3.4.4"
checkmate                 NA     "yes"            "3.4.4"
classInt                  NA     "yes"            "3.4.4"
cli                       NA     "no"             "3.4.4"
clipr                     NA     "no"             "3.4.4"
colorspace                NA     "yes"            "3.4.4"
corrplot                  NA     "no"             "3.4.4"
cowplot                   NA     NA               "3.4.4"
crayon                    NA     "no"             "3.4.4"
crosstalk                 NA     "no"             "3.4.4"
crul                      NA     "no"             "3.4.4"
csvread                   NA     "yes"            "3.4.4"
Cubist                    NA     "yes"            "3.4.4"
curl                      NA     "yes"            "3.4.4"
data.table                NA     "yes"            "3.4.4"
data.tree                 NA     "no"             "3.4.4"
DBI                       NA     "no"             "3.4.4"
dendextend                NA     "no"             "3.4.4"
DEoptim                   NA     "yes"            "3.4.4"
DiagrammeR                NA     "no"             "3.4.4"
digest                    NA     "yes"            "3.4.4"
downloader                NA     "no"             "3.4.4"
dplyr                     NA     "yes"            "3.4.4"
DT                        NA     "no"             "3.4.4"
dygraphs                  NA     "no"             "3.4.4"
e1071                     NA     "yes"            "3.4.4"
ECOSolveR                 NA     "yes"            "3.4.4"
eha                       NA     "yes"            "3.4.4"
ellipsis                  NA     "yes"            "3.4.4"
evaluate                  NA     "no"             "3.4.4"
expm                      NA     "yes"            "3.4.4"
extrafont                 NA     "no"             "3.4.4"
extrafontdb               NA     NA               "3.4.4"
factoextra                NA     "no"             "3.4.4"
FactoMineR                NA     "no"             "3.4.4"
fansi                     NA     "yes"            "3.4.4"
farver                    NA     "yes"            "3.4.4"
fastmatch                 NA     "yes"            "3.4.4"
FinCal                    NA     "no"             "3.4.4"
fitdistrplus              NA     "no"             "3.4.4"
flexdashboard             NA     "no"             "3.4.4"
forcats                   NA     "no"             "3.4.4"
foreign                   NA     "yes"            "3.4.4"
Formula                   NA     "no"             "3.4.4"
fs                        NA     "yes"            "3.4.4"
gbRd                      NA     NA               "3.4.4"
gdalUtils                 NA     "no"             "3.4.4"
gdtools                   NA     "yes"            "3.4.4"
genalg                    NA     "no"             "3.4.4"
generics                  NA     "no"             "3.4.4"
geojsonR                  NA     "yes"            "3.4.4"
geosphere                 NA     "yes"            "3.4.4"
gepaf                     NA     "no"             "3.4.4"
ggforce                   NA     "yes"            "3.4.4"
ggmap                     NA     "no"             "3.4.4"
ggplot2                   NA     "no"             "3.4.4"
ggpubr                    NA     "no"             "3.4.4"
ggraph                    NA     "yes"            "3.4.4"
ggrepel                   NA     "yes"            "3.4.4"
ggsci                     NA     "no"             "3.4.4"
ggsignif                  NA     "no"             "3.4.4"
gistr                     NA     "no"             "3.4.4"
globalOptTests            NA     "yes"            "3.4.4"
glue                      NA     "yes"            "3.4.4"
graph                     NA     "yes"            "3.4.4"
gridExtra                 NA     "no"             "3.4.4"
gtable                    NA     "no"             "3.4.4"
gWidgets                  NA     "no"             "3.4.4"
gWidgetsRGtk2             NA     "no"             "3.4.4"
haven                     NA     "yes"            "3.4.4"
highr                     NA     "no"             "3.4.4"
Hmisc                     NA     "yes"            "3.4.4"
hms                       NA     "no"             "3.4.4"
htmlTable                 NA     "no"             "3.4.4"
htmltools                 NA     "yes"            "3.4.4"
htmlwidgets               NA     "no"             "3.4.4"
httpcode                  NA     "no"             "3.4.4"
httpuv                    NA     "yes"            "3.4.4"
httr                      NA     "no"             "3.4.4"
hunspell                  NA     "yes"            "3.4.4"
igraph                    NA     "yes"            "3.4.4"
influenceR                NA     "yes"            "3.4.4"
isoband                   NA     "yes"            "3.4.4"
ISOcodes                  NA     "no"             "3.4.4"
janeaustenr               NA     "no"             "3.4.4"
jpeg                      NA     "yes"            "3.4.4"
jsonlite                  NA     "yes"            "3.4.4"
kernlab                   NA     "yes"            "3.4.4"
kknn                      NA     "yes"            "3.4.4"
knitr                     NA     "no"             "3.4.4"
labeling                  NA     "no"             "3.4.4"
labelled                  NA     "no"             "3.4.4"
later                     NA     "yes"            "3.4.4"
latticeExtra              NA     "no"             "3.4.4"
lazyeval                  NA     "yes"            "3.4.4"
leaflet                   NA     "no"             "3.4.4"
leaflet.extras            NA     "no"             "3.4.4"
leafpop                   NA     "yes"            "3.4.4"
lme4                      NA     "yes"            "3.4.4"
lmtest                    NA     "yes"            "3.4.4"
lpSolve                   NA     "yes"            "3.4.4"
lpSolveAPI                NA     "yes"            "3.4.4"
lsei                      NA     "yes"            "3.4.4"
lubridate                 NA     "yes"            "3.4.4"
magrittr                  NA     "no"             "3.4.4"
maps                      NA     "yes"            "3.4.4"
maptools                  NA     "yes"            "3.4.4"
markdown                  NA     "yes"            "3.4.4"
MatrixModels              NA     "no"             "3.4.4"
matrixStats               NA     "yes"            "3.4.4"
mc2d                      NA     "no"             "3.4.4"
mclust                    NA     "yes"            "3.4.4"
mco                       NA     "yes"            "3.4.4"
mda                       NA     "yes"            "3.4.4"
memoise                   NA     "no"             "3.4.4"
mime                      NA     "yes"            "3.4.4"
minqa                     NA     "yes"            "3.4.4"
mlogit                    NA     "no"             "3.4.4"
modelr                    NA     "no"             "3.4.4"
modeltools                NA     "no"             "3.4.4"
munsell                   NA     "no"             "3.4.4"
nabor                     NA     "yes"            "3.4.4"
network                   NA     "yes"            "3.4.4"
networkD3                 NA     "no"             "3.4.4"
nloptr                    NA     "yes"            "3.4.4"
NLP                       NA     "no"             "3.4.4"
npsurv                    NA     "no"             "3.4.4"
opencage                  NA     "no"             "3.4.4"
openssl                   NA     "yes"            "3.4.4"
openxlsx                  NA     "yes"            "3.4.4"
optimx                    NA     "no"             "3.4.4"
osmar                     NA     "no"             "3.4.4"
packrat                   NA     "no"             "3.4.4"
party                     NA     "yes"            "3.4.4"
pbkrtest                  NA     "no"             "3.4.4"
PerformanceAnalytics      NA     "yes"            "3.4.4"
pillar                    NA     "no"             "3.4.4"
pkgconfig                 NA     "no"             "3.4.4"
plogr                     NA     "no"             "3.4.4"
plotly                    NA     "no"             "3.4.4"
pls                       NA     "no"             "3.4.4"
plyr                      NA     "yes"            "3.4.4"
png                       NA     "yes"            "3.4.4"
polyclip                  NA     "yes"            "3.4.4"
polynom                   NA     "no"             "3.4.4"
prettyunits               NA     "no"             "3.4.4"
processx                  NA     "yes"            "3.4.4"
progress                  NA     "no"             "3.4.4"
promises                  NA     "yes"            "3.4.4"
pryr                      NA     "yes"            "3.4.4"
ps                        NA     "yes"            "3.4.4"
purrr                     NA     "yes"            "3.4.4"
qcc                       NA     "no"             "3.4.4"
qmap                      NA     "no"             "3.4.4"
qualityTools              NA     "no"             "3.4.4"
quantmod                  NA     "no"             "3.4.4"
quantreg                  NA     "yes"            "3.4.4"
questionr                 NA     "no"             "3.4.4"
R.methodsS3               NA     "no"             "3.4.4"
R.oo                      NA     "no"             "3.4.4"
R.utils                   NA     "no"             "3.4.4"
R6                        NA     "no"             "3.4.4"
raster                    NA     "yes"            "3.4.4"
rbgm                      NA     "no"             "3.4.4"
rbokeh                    NA     "no"             "3.4.4"
rCarto                    NA     "no"             "3.4.4"
RColorBrewer              NA     "no"             "3.4.4"
Rcpp                      NA     "yes"            "3.4.4"
RcppArmadillo             NA     "yes"            "3.4.4"
RcppEigen                 NA     "yes"            "3.4.4"
RcppParallel              NA     "yes"            "3.4.4"
RCurl                     NA     "yes"            "3.4.4"
Rdpack                    NA     "no"             "3.4.4"
readr                     NA     "yes"            "3.4.4"
readxl                    NA     "yes"            "3.4.4"
rematch                   NA     "no"             "3.4.4"
reprex                    NA     "no"             "3.4.4"
reshape2                  NA     "yes"            "3.4.4"
reticulate                NA     "yes"            "3.4.4"
rgdal                     NA     "yes"            "3.4.4"
rgeos                     NA     "yes"            "3.4.4"
rgexf                     NA     "yes"            "3.4.4"
RgoogleMaps               NA     "no"             "3.4.4"
RGraphics                 NA     "no"             "3.4.4"
Rgraphviz                 NA     "yes"            "3.4.4"
rio                       NA     "no"             "3.4.4"
RISmed                    NA     "no"             "3.4.4"
RJSONIO                   NA     "yes"            "3.4.4"
rlang                     NA     "yes"            "3.4.4"
rmarkdown                 NA     "no"             "3.4.4"
rmdformats                NA     "no"             "3.4.4"
rminer                    NA     "no"             "3.4.4"
ROI                       NA     "no"             "3.4.4"
ROI.models.globalOptTests NA     "no"             "3.4.4"
ROI.models.miplib         NA     "no"             "3.4.4"
ROI.models.netlib         NA     "no"             "3.4.4"
ROI.plugin.alabama        NA     "no"             "3.4.4"
ROI.plugin.deoptim        NA     "no"             "3.4.4"
ROI.plugin.ecos           NA     "no"             "3.4.4"
ROI.plugin.glpk           NA     "no"             "3.4.4"
ROI.plugin.ipop           NA     "no"             "3.4.4"
ROI.plugin.lpsolve        NA     "no"             "3.4.4"
ROI.plugin.msbinlp        NA     "no"             "3.4.4"
ROI.plugin.neos           NA     "no"             "3.4.4"
ROI.plugin.optimx         NA     "no"             "3.4.4"
Rook                      NA     "yes"            "3.4.4"
rprojroot                 NA     "no"             "3.4.4"
RQDA                      NA     "no"             "3.4.4"
rriskDistributions        NA     "no"             "3.4.4"
rsconnect                 NA     "no"             "3.4.4"
rscopus                   NA     "no"             "3.4.4"
RSpectra                  NA     "yes"            "3.4.4"
RSQLite                   NA     "yes"            "3.4.4"
rstudioapi                NA     "no"             "3.4.4"
RTriangle                 NA     "yes"            "3.4.4"
Rttf2pt1                  NA     "yes"            "3.4.4"
rtweet                    NA     "yes"            "3.4.4"
rvest                     NA     "no"             "3.4.4"
sandwich                  NA     "no"             "3.4.4"
satellite                 NA     "yes"            "3.4.4"
scales                    NA     "yes"            "3.4.4"
scatterplot3d             NA     "no"             "3.4.4"
selectr                   NA     "no"             "3.4.4"
sf                        NA     NA               "3.4.4"
shiny                     NA     "no"             "3.4.4"
shinycssloaders           NA     "no"             "3.4.4"
shinythemes               NA     "no"             "3.4.4"
simmer                    NA     "yes"            "3.4.4"
simmer.plot               NA     "no"             "3.4.4"
SixSigma                  NA     "no"             "3.4.4"
SnowballC                 NA     "yes"            "3.4.4"
sourcetools               NA     "yes"            "3.4.4"
sp                        NA     "yes"            "3.4.4"
spacyr                    NA     "no"             "3.4.4"
SparseM                   NA     "yes"            "3.4.4"
spData                    NA     "no"             "3.4.4"
spDataLarge               NA     "no"             "3.4.4"
statmod                   NA     "yes"            "3.4.4"
stopwords                 NA     "no"             "3.4.4"
stringdist                NA     "yes"            "3.4.4"
stringi                   NA     "yes"            "3.4.4"
stringr                   NA     "no"             "3.4.4"
strucchange               NA     "no"             "3.4.4"
survival                  NA     "yes"            "3.4.4"
svglite                   NA     "yes"            "3.4.4"
sys                       NA     "yes"            "3.4.4"
TH.data                   NA     "no"             "3.4.4"
tibble                    NA     "yes"            "3.4.4"
tictoc                    NA     NA               "3.4.4"
tidyr                     NA     "yes"            "3.4.4"
tidyselect                NA     "yes"            "3.4.4"
tidytext                  NA     "no"             "3.4.4"
tidyverse                 NA     "no"             "3.4.4"
timevis                   NA     "no"             "3.4.4"
tinytex                   NA     "no"             "3.4.4"
tm                        NA     "yes"            "3.4.4"
tokenizers                NA     "yes"            "3.4.4"
triebeard                 NA     "yes"            "3.4.4"
tweenr                    NA     "yes"            "3.4.4"
twitteR                   NA     "no"             "3.4.4"
units                     NA     "yes"            "3.4.4"
urltools                  NA     "yes"            "3.4.4"
utf8                      NA     "yes"            "3.4.4"
vctrs                     NA     "yes"            "3.4.4"
viridis                   NA     "no"             "3.4.4"
viridisLite               NA     "no"             "3.4.4"
visNetwork                NA     "no"             "3.4.4"
webshot                   NA     "no"             "3.4.4"
widyr                     NA     "no"             "3.4.4"
withr                     NA     "no"             "3.4.4"
wordcloud                 NA     "yes"            "3.4.4"
xfun                      NA     "no"             "3.4.4"
xgboost                   NA     "yes"            "3.4.4"
XML                       NA     "yes"            "3.4.4"
xmlrpc2                   NA     "no"             "3.4.4"
xtable                    NA     "no"             "3.4.4"
yaml                      NA     "yes"            "3.4.4"
zeallot                   NA     "no"             "3.4.4"
zip                       NA     "yes"            "3.4.4"
zoo                       NA     "yes"            "3.4.4"
eha                       NA     "yes"            "3.4.4"
mc2d                      NA     "no"             "3.4.4"
rriskDistributions        NA     "no"             "3.4.4"
survival                  NA     "yes"            "3.4.4"
abind                     NA     "no"             "3.4.2"
acepack                   NA     "yes"            "3.4.2"
ade4                      NA     "yes"            "3.4.3"
adegenet                  NA     "yes"            "3.4.3"
adegraphics               NA     "no"             "3.4.3"
adephylo                  NA     "yes"            "3.4.3"
AER                       NA     "no"             "3.4.2"
afex                      NA     "no"             "3.4.2"
Amelia                    NA     "yes"            "3.4.2"
AMORE                     NA     "yes"            "3.4.2"
animation                 NA     "no"             "3.4.3"
ape                       NA     "yes"            "3.4.2"
arm                       NA     "no"             "3.4.2"
aroma.light               NA     "no"             "3.4.2"
assertthat                NA     "no"             "3.4.2"
backports                 NA     "yes"            "3.4.2"
base64enc                 NA     "yes"            "3.4.2"
BatchJobs                 NA     "no"             "3.4.3"
BayesFactor               NA     "yes"            "3.4.2"
bayesm                    NA     "yes"            "3.4.2"
BBmisc                    NA     "yes"            "3.4.3"
bbmle                     NA     "no"             "3.4.2"
beeswarm                  NA     "no"             "3.4.2"
BiasedUrn                 NA     "yes"            "3.4.2"
bindr                     NA     "no"             "3.4.2"
bindrcpp                  NA     "yes"            "3.4.2"
bio3d                     NA     "yes"            "3.4.3"
bit                       NA     "yes"            "3.4.2"
bit64                     NA     "yes"            "3.4.2"
bitops                    NA     "yes"            "3.4.2"
blob                      NA     "no"             "3.4.2"
blockmodeling             NA     "yes"            "3.4.2"
BMS                       NA     "no"             "3.4.2"
bold                      NA     "no"             "3.4.2"
BoolNet                   NA     "yes"            "3.4.2"
BradleyTerry2             NA     "no"             "3.4.2"
brew                      NA     NA               "3.4.2"
brglm                     NA     "yes"            "3.4.2"
broom                     NA     "no"             "3.4.3"
ca                        NA     "no"             "3.4.2"
Cairo                     NA     "yes"            "3.4.2"
cairoDevice               NA     "yes"            "3.4.2"
calibrate                 NA     "no"             "3.4.2"
car                       NA     "no"             "3.4.2"
carData                   NA     "no"             "3.4.4"
caret                     NA     "yes"            "3.4.3"
caTools                   NA     "yes"            "3.4.2"
cellranger                NA     "no"             "3.4.2"
checkmate                 NA     "yes"            "3.4.2"
chron                     NA     "yes"            "3.4.3"
cli                       NA     "no"             "3.4.3"
clusterGeneration         NA     "no"             "3.4.3"
cmprsk                    NA     "yes"            "3.4.2"
coda                      NA     "no"             "3.4.2"
coin                      NA     "yes"            "3.4.2"
colorspace                NA     "yes"            "3.4.2"
combinat                  NA     NA               "3.4.2"
contfrac                  NA     "yes"            "3.4.2"
conting                   NA     "no"             "3.4.2"
corpcor                   NA     "no"             "3.4.2"
crayon                    NA     "no"             "3.4.2"
crosstalk                 NA     "no"             "3.4.3"
crul                      NA     "no"             "3.4.3"
cubature                  NA     "yes"            "3.4.2"
curl                      NA     "yes"            "3.4.3"
CVST                      NA     "no"             "3.4.2"
data.table                NA     "yes"            "3.4.2"
date                      NA     "yes"            "3.4.3"
DBI                       NA     "no"             "3.4.2"
DBItest                   NA     "no"             "3.4.3"
dbplyr                    NA     "no"             "3.4.3"
ddalpha                   NA     "yes"            "3.4.2"
deal                      NA     NA               "3.4.2"
deldir                    NA     "yes"            "3.4.3"
DEoptimR                  NA     "no"             "3.4.2"
desc                      NA     "no"             "3.4.2"
deSolve                   NA     "yes"            "3.4.2"
devtools                  NA     "yes"            "3.4.3"
DiagnosisMed              NA     NA               "3.4.2"
dichromat                 NA     NA               "3.4.2"
digest                    NA     "yes"            "3.4.3"
dimRed                    NA     "yes"            "3.4.3"
distory                   NA     "yes"            "3.4.2"
DNAcopy                   NA     "yes"            "3.4.2"
doMC                      NA     "no"             "3.4.3"
doParallel                NA     "no"             "3.4.2"
DoseFinding               NA     "yes"            "3.4.2"
doSNOW                    NA     "no"             "3.4.3"
dotCall64                 NA     "yes"            "3.4.3"
downloader                NA     "no"             "3.4.2"
dplyr                     NA     "yes"            "3.4.3"
DRR                       NA     "no"             "3.4.2"
DT                        NA     "no"             "3.4.3"
dynlm                     NA     "no"             "3.4.2"
e1071                     NA     "yes"            "3.4.2"
eco                       NA     "yes"            "3.4.2"
ecodist                   NA     "yes"            "3.4.2"
effects                   NA     "no"             "3.4.2"
ellipse                   NA     "no"             "3.4.3"
elliptic                  NA     "no"             "3.4.2"
energy                    NA     "yes"            "3.4.2"
Epi                       NA     "yes"            "3.4.3"
epibasix                  NA     NA               "3.4.2"
epicalc                   NA     NA               "3.4.2"
epiR                      NA     "no"             "3.4.3"
epitools                  NA     "no"             "3.4.2"
eRm                       NA     "yes"            "3.4.2"
estimability              NA     "no"             "3.4.2"
etm                       NA     "yes"            "3.4.2"
evaluate                  NA     "no"             "3.4.2"
evd                       NA     "yes"            "3.4.2"
expm                      NA     "yes"            "3.4.2"
FactoMineR                NA     "no"             "3.4.3"
fail                      NA     "no"             "3.4.2"
fAsianOptions             NA     "yes"            "3.4.2"
fAssets                   NA     "no"             "3.4.2"
fastcluster               NA     "yes"            "3.4.2"
fastICA                   NA     "yes"            "3.4.2"
fastmatch                 NA     "yes"            "3.4.2"
fBasics                   NA     "yes"            "3.4.2"
fBonds                    NA     "no"             "3.4.2"
fCopulae                  NA     "no"             "3.4.2"
fExoticOptions            NA     "no"             "3.4.2"
fExtremes                 NA     "no"             "3.4.2"
fGarch                    NA     "yes"            "3.4.2"
fields                    NA     "yes"            "3.4.2"
filehash                  NA     "yes"            "3.4.2"
fImport                   NA     "no"             "3.4.2"
fitbitScraper             NA     "no"             "3.4.2"
fitcoach                  NA     "no"             "3.4.2"
flashClust                NA     NA               "3.4.3"
fMultivar                 NA     "no"             "3.4.2"
fNonlinear                NA     "yes"            "3.4.2"
fOptions                  NA     "yes"            "3.4.2"
forcats                   NA     "no"             "3.4.3"
foreach                   NA     "no"             "3.4.3"
formatR                   NA     "no"             "3.4.2"
Formula                   NA     "no"             "3.4.2"
fPortfolio                NA     "no"             "3.4.2"
fRegression               NA     "no"             "3.4.2"
fTrading                  NA     "no"             "3.4.2"
fUnitRoots                NA     "yes"            "3.4.2"
futile.logger             NA     "no"             "3.4.2"
futile.options            NA     NA               "3.4.2"
future                    NA     "no"             "3.4.3"
g.data                    NA     "no"             "3.4.2"
gam                       NA     "yes"            "3.4.2"
gbm                       NA     "yes"            "3.4.2"
gdata                     NA     "no"             "3.4.2"
geepack                   NA     "yes"            "3.4.2"
GenABEL                   NA     "yes"            "3.4.2"
GenABEL.data              NA     "no"             "3.4.2"
genetics                  NA     "no"             "3.4.2"
getopt                    NA     "no"             "3.4.3"
ggplot2                   NA     "no"             "3.4.2"
ggvis                     NA     "no"             "3.4.3"
git2r                     NA     "yes"            "3.4.3"
glmnet                    NA     "yes"            "3.4.3"
globals                   NA     "no"             "3.4.3"
glue                      NA     "yes"            "3.4.2"
gmaps                     NA     NA               "3.4.2"
gmodels                   NA     "no"             "3.4.2"
gnm                       NA     "yes"            "3.4.2"
goftest                   NA     "yes"            "3.4.2"
googleVis                 NA     "no"             "3.4.2"
gower                     NA     "yes"            "3.4.2"
gplots                    NA     "no"             "3.4.2"
gregmisc                  NA     "no"             "3.3.1"
gridBase                  NA     "no"             "3.4.2"
gridExtra                 NA     "no"             "3.4.2"
gsl                       NA     "yes"            "3.4.2"
gss                       NA     "yes"            "3.4.2"
gtable                    NA     "no"             "3.4.2"
gtools                    NA     "yes"            "3.4.2"
Guerry                    NA     "no"             "3.4.2"
haplo.stats               NA     "yes"            "3.4.2"
haven                     NA     "yes"            "3.4.3"
hdf5                      NA     NA               "3.4.2"
hexbin                    NA     "yes"            "3.4.2"
highr                     NA     "no"             "3.4.2"
Hmisc                     NA     "yes"            "3.4.3"
hms                       NA     "no"             "3.4.3"
htmlTable                 NA     "no"             "3.4.3"
htmltools                 NA     "yes"            "3.4.2"
htmlwidgets               NA     "no"             "3.4.3"
httpcode                  NA     "no"             "3.4.2"
httpuv                    NA     "yes"            "3.4.2"
httr                      NA     "no"             "3.4.2"
hwriter                   NA     "no"             "3.4.2"
hypergeo                  NA     "no"             "3.4.2"
igraph                    NA     "yes"            "3.4.2"
inline                    NA     "no"             "3.4.2"
int64                     NA     NA               "3.4.2"
ipred                     NA     "yes"            "3.4.3"
irlba                     NA     "yes"            "3.4.3"
ISOcodes                  NA     "no"             "3.4.2"
ISOweek                   NA     NA               "3.4.3"
iterators                 NA     "no"             "3.4.3"
its                       NA     NA               "3.4.2"
jsonlite                  NA     "yes"            "3.4.2"
kernlab                   NA     "yes"            "3.4.2"
knitr                     NA     "no"             "3.4.2"
labeling                  NA     "no"             "3.4.2"
lambda.r                  NA     "no"             "3.4.2"
latticeExtra              NA     "no"             "3.4.2"
lava                      NA     "no"             "3.4.2"
lavaan                    NA     "no"             "3.4.2"
lazyeval                  NA     "yes"            "3.4.2"
leaps                     NA     "yes"            "3.4.3"
LearnBayes                NA     "no"             "3.4.2"
lexRankr                  NA     "yes"            "3.4.3"
lhs                       NA     "yes"            "3.4.2"
listenv                   NA     "no"             "3.4.2"
littler                   NA     "yes"            "3.4.3"
lme4                      NA     "yes"            "3.4.3"
lmerTest                  NA     "no"             "3.4.3"
lmtest                    NA     "yes"            "3.4.2"
logspline                 NA     "yes"            "3.4.2"
lpSolve                   NA     "yes"            "3.4.2"
lsmeans                   NA     "no"             "3.4.2"
lubridate                 NA     "yes"            "3.4.2"
Luminescence              NA     "yes"            "3.4.2"
magrittr                  NA     "no"             "3.4.2"
MALDIquant                NA     "yes"            "3.4.2"
MALDIquantForeign         NA     "no"             "3.4.2"
mapdata                   NA     "yes"            "3.4.3"
mapproj                   NA     "yes"            "3.4.3"
maps                      NA     "yes"            "3.4.3"
maptools                  NA     "yes"            "3.4.2"
maptree                   NA     NA               "3.4.2"
markdown                  NA     "yes"            "3.4.2"
Matching                  NA     "yes"            "3.4.3"
MatchIt                   NA     "no"             "3.4.3"
matrixcalc                NA     NA               "3.4.2"
MatrixModels              NA     "no"             "3.4.2"
matrixStats               NA     "yes"            "3.4.2"
maxLik                    NA     "no"             "3.4.2"
mclust                    NA     "yes"            "3.4.3"
mcmc                      NA     "yes"            "3.4.2"
MCMCpack                  NA     "yes"            "3.4.2"
medAdherence              NA     NA               "3.4.2"
memoise                   NA     "no"             "3.4.2"
mFilter                   NA     NA               "3.4.2"
mi                        NA     "no"             "3.4.2"
mime                      NA     "yes"            "3.4.2"
miniUI                    NA     "no"             "3.4.2"
minpack.lm                NA     "yes"            "3.4.3"
minqa                     NA     "yes"            "3.4.2"
misc3d                    NA     NA               "3.4.2"
miscTools                 NA     "no"             "3.4.2"
mixtools                  NA     "yes"            "3.4.2"
mlbench                   NA     NA               "3.4.2"
mlmRev                    NA     "no"             "3.4.2"
mnormt                    NA     "yes"            "3.4.2"
MNP                       NA     "yes"            "3.4.2"
mockery                   NA     "no"             "3.4.2"
ModelMetrics              NA     "yes"            "3.4.2"
modeltools                NA     "no"             "3.4.2"
msm                       NA     "yes"            "3.4.3"
multcomp                  NA     "no"             "3.4.2"
multicore                 NA     "no"             "3.4.2"
munsell                   NA     "no"             "3.4.2"
mvnormtest                NA     NA               "3.4.2"
mvtnorm                   NA     "yes"            "3.4.3"
natserv                   NA     "no"             "3.4.2"
ncdf4                     NA     "yes"            "3.4.2"
nleqslv                   NA     "yes"            "3.4.2"
nloptr                    NA     "yes"            "3.4.2"
NLP                       NA     "no"             "3.4.2"
NMF                       NA     "yes"            "3.4.2"
nnls                      NA     NA               "3.4.2"
nortest                   NA     "no"             "3.4.2"
numDeriv                  NA     "no"             "3.4.2"
nws                       NA     NA               "3.4.2"
openssl                   NA     "yes"            "3.4.4"
optparse                  NA     "no"             "3.4.2"
pbapply                   NA     "no"             "3.4.2"
pbdZMQ                    NA     "yes"            "3.4.3"
pbivnorm                  NA     "yes"            "3.4.2"
pbkrtest                  NA     "no"             "3.4.2"
permute                   NA     "no"             "3.3.2"
phangorn                  NA     "yes"            "3.4.3"
pheatmap                  NA     "no"             "3.4.2"
phylobase                 NA     "yes"            "3.4.2"
phytools                  NA     "no"             "3.4.3"
pillar                    NA     "no"             "3.4.3"
pkgconfig                 NA     "no"             "3.4.2"
pkgKitten                 NA     "no"             "3.4.2"
pkgmaker                  NA     "no"             "3.4.2"
plogr                     NA     "no"             "3.4.2"
plotly                    NA     "no"             "3.4.3"
plotrix                   NA     "no"             "3.4.2"
plyr                      NA     "yes"            "3.4.2"
png                       NA     "yes"            "3.4.2"
polspline                 NA     "yes"            "3.4.2"
polyclip                  NA     "yes"            "3.4.2"
polyCub                   NA     "yes"            "3.4.2"
praise                    NA     "no"             "3.4.3"
prettyunits               NA     "no"             "3.4.2"
princurve                 NA     "yes"            "3.4.2"
prodlim                   NA     "yes"            "3.4.2"
profileModel              NA     "no"             "3.4.2"
progress                  NA     "no"             "3.4.2"
proto                     NA     "no"             "3.4.2"
PSCBS                     NA     NA               "3.4.2"
pscl                      NA     "yes"            "3.4.2"
psy                       NA     NA               "3.4.2"
psych                     NA     "no"             "3.4.3"
purrr                     NA     "yes"            "3.4.3"
pwt                       NA     "no"             "3.4.2"
pwt8                      NA     "no"             "3.4.2"
pwt9                      NA     "no"             "3.4.2"
qqman                     NA     "no"             "3.4.2"
qtl                       NA     "yes"            "3.4.3"
quadprog                  NA     "yes"            "3.4.2"
quantmod                  NA     "no"             "3.4.3"
quantreg                  NA     "yes"            "3.4.3"
qvcalc                    NA     "no"             "3.4.2"
R.cache                   NA     NA               "3.4.2"
R.methodsS3               NA     "no"             "3.4.2"
R.oo                      NA     "no"             "3.4.2"
R.utils                   NA     "no"             "3.4.2"
R6                        NA     "no"             "3.4.2"
RandomFields              NA     "yes"            "3.4.2"
RandomFieldsUtils         NA     "yes"            "3.4.2"
randomForest              NA     "yes"            "3.4.2"
RaschSampler              NA     "yes"            "3.4.2"
raster                    NA     "yes"            "3.4.3"
Rcmdr                     NA     "no"             "3.4.2"
RcmdrMisc                 NA     "no"             "3.4.3"
RColorBrewer              NA     "no"             "3.4.2"
Rcpp                      NA     "yes"            "3.4.3"
RcppArmadillo             NA     "yes"            "3.4.3"
RcppEigen                 NA     "yes"            "3.4.3"
RcppGSL                   NA     "yes"            "3.4.2"
RcppRoll                  NA     "yes"            "3.4.2"
RCurl                     NA     "yes"            "3.4.3"
readBrukerFlexData        NA     "no"             "3.4.2"
readMzXmlData             NA     "no"             "3.4.2"
readr                     NA     "yes"            "3.4.2"
readstata13               NA     "yes"            "3.4.2"
readxl                    NA     "yes"            "3.4.4"
recipes                   NA     "no"             "3.4.3"
registry                  NA     "no"             "3.4.3"
relimp                    NA     "no"             "3.4.2"
rematch                   NA     "no"             "3.4.2"
rentrez                   NA     "no"             "3.4.3"
repr                      NA     "no"             "3.4.2"
reshape                   NA     "yes"            "3.4.2"
reshape2                  NA     "yes"            "3.4.2"
rgenoud                   NA     "yes"            "3.4.2"
rggobi                    NA     "yes"            "3.4.2"
rgl                       NA     "yes"            "3.4.3"
Rglpk                     NA     "yes"            "3.4.2"
rglwidget                 NA     "no"             "3.4.2"
RGtk2                     NA     "yes"            "3.4.3"
rhandsontable             NA     "no"             "3.4.3"
RInside                   NA     "yes"            "3.4.2"
ritis                     NA     "no"             "3.4.2"
rjags                     NA     "yes"            "3.4.2"
rJava                     NA     "yes"            "3.4.4"
rjson                     NA     "yes"            "3.4.2"
RJSONIO                   NA     "yes"            "3.4.2"
rlang                     NA     "yes"            "3.4.3"
rlist                     NA     "no"             "3.4.3"
RLumShiny                 NA     "no"             "3.4.3"
Rmpi                      NA     "yes"            "3.4.2"
rms                       NA     "yes"            "3.4.3"
RMySQL                    NA     "yes"            "3.4.3"
rncl                      NA     "yes"            "3.4.2"
rneos                     NA     "no"             "3.4.2"
RNetCDF                   NA     "yes"            "3.4.2"
RNeXML                    NA     "no"             "3.4.2"
rngtools                  NA     "no"             "3.4.2"
Rniftilib                 NA     NA               "3.4.2"
robustbase                NA     "yes"            "3.4.2"
ROCR                      NA     "no"             "3.4.2"
RODBC                     NA     "yes"            "3.4.2"
rotl                      NA     "no"             "3.4.2"
RPostgreSQL               NA     "yes"            "3.4.2"
rprojroot                 NA     "no"             "3.4.2"
RProtoBuf                 NA     "yes"            "3.4.2"
RQuantLib                 NA     "yes"            "3.4.2"
rredlist                  NA     "no"             "3.4.2"
RSclient                  NA     "yes"            "3.4.3"
rsdmx                     NA     "no"             "3.4.3"
Rserve                    NA     "yes"            "3.4.3"
Rsolnp                    NA     "no"             "3.4.2"
rsprng                    NA     NA               "3.4.2"
RSQLite                   NA     "yes"            "3.4.2"
rstudioapi                NA     "no"             "3.4.3"
Rsymphony                 NA     "yes"            "3.4.2"
RUnit                     NA     "no"             "3.4.2"
sandwich                  NA     "no"             "3.4.2"
scales                    NA     "yes"            "3.4.2"
scatterD3                 NA     "no"             "3.4.3"
scatterplot3d             NA     "no"             "3.4.2"
segmented                 NA     "no"             "3.4.2"
sem                       NA     "yes"            "3.4.2"
semTools                  NA     "no"             "3.4.2"
sendmailR                 NA     "no"             "3.4.2"
seqinr                    NA     "yes"            "3.4.2"
seroincidence             NA     "no"             "3.4.2"
sfsmisc                   NA     "no"             "3.4.2"
shape                     NA     "no"             "3.4.2"
shiny                     NA     "no"             "3.4.3"
shinyBS                   NA     "no"             "3.4.2"
shinydashboard            NA     "no"             "3.4.3"
shinyjs                   NA     "no"             "3.4.2"
slam                      NA     "yes"            "3.4.3"
sm                        NA     "yes"            "3.4.2"
sn                        NA     "no"             "3.4.3"
snow                      NA     "no"             "3.4.2"
SnowballC                 NA     "yes"            "3.4.2"
solrium                   NA     "no"             "3.4.2"
sourcetools               NA     "yes"            "3.4.2"
sp                        NA     "yes"            "3.4.4"
spam                      NA     "yes"            "3.4.3"
SparseM                   NA     "yes"            "3.4.2"
spatstat                  NA     "yes"            "3.4.2"
spatstat.data             NA     "no"             "3.4.2"
spatstat.utils            NA     "yes"            "3.4.2"
spc                       NA     "yes"            "3.4.2"
spdep                     NA     "yes"            "3.4.2"
stabledist                NA     "no"             "3.4.2"
statmod                   NA     "yes"            "3.4.2"
stringi                   NA     "yes"            "3.4.3"
stringr                   NA     "no"             "3.4.3"
strucchange               NA     "no"             "3.4.2"
surveillance              NA     "yes"            "3.4.3"
survey                    NA     "no"             "3.4.2"
taxize                    NA     "no"             "3.4.2"
tcltk2                    NA     "no"             "3.4.2"
TeachingDemos             NA     "no"             "3.4.2"
tensor                    NA     NA               "3.4.2"
testit                    NA     "no"             "3.4.2"
testthat                  NA     "yes"            "3.4.3"
tgp                       NA     "yes"            "3.4.2"
TH.data                   NA     "no"             "3.4.2"
tibble                    NA     "yes"            "3.4.3"
tidyr                     NA     "yes"            "3.4.3"
tidyselect                NA     "yes"            "3.4.3"
tikzDevice                NA     "yes"            "3.4.2"
timeDate                  NA     "no"             "3.4.3"
timeSeries                NA     "no"             "3.4.2"
tkrplot                   NA     NA               "3.4.2"
tm                        NA     "yes"            "3.4.2"
treescape                 NA     "yes"            "3.4.2"
treespace                 NA     "yes"            "3.4.3"
triebeard                 NA     "yes"            "3.4.3"
truncdist                 NA     "no"             "3.4.3"
truncnorm                 NA     "yes"            "3.4.2"
tseries                   NA     "yes"            "3.4.3"
TTR                       NA     "yes"            "3.4.3"
urca                      NA     "yes"            "3.4.2"
urltools                  NA     "yes"            "3.4.3"
utf8                      NA     "yes"            "3.4.3"
uuid                      NA     "yes"            "3.4.2"
V8                        NA     "yes"            "3.4.2"
vcd                       NA     "no"             "3.4.2"
vcdExtra                  NA     "no"             "3.4.2"
vegan                     NA     "yes"            "3.4.3"
VGAM                      NA     "yes"            "3.4.2"
vioplot                   NA     NA               "3.4.2"
viridis                   NA     "no"             "3.4.3"
viridisLite               NA     "no"             "3.4.3"
WDI                       NA     "no"             "3.4.2"
webmockr                  NA     "no"             "3.4.3"
whisker                   NA     "no"             "3.4.3"
WikidataR                 NA     "no"             "3.4.2"
WikipediR                 NA     "no"             "3.4.2"
wikitaxa                  NA     "no"             "3.4.3"
withr                     NA     "no"             "3.4.3"
wordcloud                 NA     "yes"            "3.4.3"
worrms                    NA     "no"             "3.4.2"
XML                       NA     "yes"            "3.4.3"
xml2                      NA     "yes"            "3.4.3"
XMLRPC                    NA     NA               "3.4.2"
xtable                    NA     "no"             "3.4.2"
xts                       NA     "yes"            "3.4.3"
yaml                      NA     "yes"            "3.4.2"
Zelig                     NA     "no"             "3.4.3"
zoo                       NA     "yes"            "3.4.3"
base                      NA     NA               "3.4.4"
boot                      NA     "no"             "3.4.2"
class                     NA     "yes"            "3.4.2"
cluster                   NA     "yes"            "3.4.2"
codetools                 NA     "no"             "3.4.2"
compiler                  NA     NA               "3.4.4"
datasets                  NA     NA               "3.4.4"
foreign                   NA     "yes"            "3.4.2"
graphics                  NA     "yes"            "3.4.4"
grDevices                 NA     "yes"            "3.4.4"
grid                      NA     "yes"            "3.4.4"
KernSmooth                NA     "yes"            "3.4.2"
lattice                   NA     "yes"            "3.4.2"
MASS                      NA     "yes"            "3.4.3"
Matrix                    NA     "yes"            "3.4.2"
methods                   NA     "yes"            "3.4.4"
mgcv                      NA     "yes"            "3.4.3"
nlme                      NA     "yes"            "3.4.2"
nnet                      NA     "yes"            "3.4.2"
parallel                  NA     "yes"            "3.4.4"
rpart                     NA     "yes"            "3.4.3"
spatial                   NA     "yes"            "3.4.2"
splines                   NA     "yes"            "3.4.4"
stats                     NA     "yes"            "3.4.4"
stats4                    NA     NA               "3.4.4"
survival                  NA     "yes"            "3.4.2"
tcltk                     NA     "yes"            "3.4.4"
tools                     NA     "yes"            "3.4.4"
utils                     NA     "yes"            "3.4.4"

Ver descripción de paquetes

Si esto te da error debes instalar el paquete alluvial.

packageDescription("alluvial")
Package: alluvial
Type: Package
Title: Alluvial Diagrams
Version: 0.1-2
Date: 2016-09-09
Authors@R: c( person("Michal", "Bojanowski", role=c("aut", "cre"),
       email="michal2992@gmail.com"), person("Robin", "Edwards",
       role="aut", email="robin.edwards@ucl.ac.uk") )
Description: Creating alluvial diagrams (also known as parallel
       sets plots) for multivariate and time series-like data.
URL: https://github.com/mbojan/alluvial
BugReports: https://github.com/mbojan/alluvial/issues
Suggests: devtools, testthat, reshape2, knitr, rmarkdown, dplyr
License: MIT + file LICENSE
LazyLoad: yes
LazyData: yes
VignetteBuilder: knitr
RoxygenNote: 5.0.1
NeedsCompilation: no
Packaged: 2016-09-09 09:58:05 UTC; mbojan
Author: Michal Bojanowski [aut, cre], Robin Edwards [aut]
Maintainer: Michal Bojanowski <michal2992@gmail.com>
Repository: CRAN
Date/Publication: 2016-09-09 13:08:51
Built: R 3.4.4; ; 2019-04-05 02:31:51 UTC; unix

-- File: /home/rpalma/R/x86_64-pc-linux-gnu-library/3.4/alluvial/Meta/package.rds 

Ayuda de uso de paquete

help(package = "alluvial")

Subseting en Matrices

Las matrices tienen un subconjunto similar como vectores. Sin embargo, en lugar de especificar un índice para recuperar los datos, necesitamos dos índices aquí: uno que indique la fila y el otro para la columna.

Por ejemplo, mdat [1: 2,] recupera todas las columnas de las primeras dos filas, mientras que mdat [1: 2, “C.1”] recupera las primeras dos filas y C.1 column.mn.

Subseting en Matrices 2

mdat <-matrix(c(1,2,3, 11,12,13), nrow =2, ncol =3,
byrow =TRUE, dimnames =list(c("F.1", "F.2"),
c("C.1", "C.2", "C.3")))

Subseting en Matrices 3

mdat[1:2,] #Select first two rows and all columns
    C.1 C.2 C.3
F.1   1   2   3
F.2  11  12  13
mean(mdat[1,])
[1] 2
mdat[2,3]
[1] 13

Distribución Normal

  • R tiene una colección importante de distrobucioes de probabilidades.
  • Sin lugar a dudas la Distribución Normal es la que más se usa (acepta)

  • Es posible obtener ayuda sobre el comando que trabaja con esta distribución con :

?pnorm

Mire en la ventana de ayuda lo que aparece y explique que hacen los comando dnorm, pnorm, qnorm y rnorm.

Ejemplos de Normales

n <- 100
x <- rnorm(n)
par(mfrow=c(1,2), las=1)
for(i in 1:8) {
  y <- i*x + rnorm(n)
  plot(x, y, main=i)
}

plot of chunk bunch_o_figsplot of chunk bunch_o_figsplot of chunk bunch_o_figsplot of chunk bunch_o_figs

Uso de tablas

n <- 100
w <- rnorm(n)
y <- 2*w + rnorm(n)
out <- lm(y ~ w)
library(knitr)
kable(summary(out)$coef, digits=2)
Estimate Std. Error t value Pr(>|t|)
(Intercept) 0.15 0.11 1.39 0.17
w 2.16 0.11 20.26 0.00

Otras Distribuciones

Distrib. Comandos
Beta pbeta qbeta dbeta rbeta
Binomial pbinom qbinom dbinom rbinom
Cauchy pcauchy qcauchy dcauchy rcauchy
Chi-Square pchisq qchisq dchisq rchisq
Exponential pexp qexp dexp rexp
F pf qf df rf
Gamma pgamma qgamma dgamma rgamma
Geometric pgeom qgeom dgeom rgeom

Otras distribuciones (2)

Distrib. Comandos
Hypergeometr phyper qhyper dhyper rhyper
Logistic plogis qlogis dlogis rlogis
Log Normal plnorm qlnorm dlnorm rlnorm
Neg.Binomial pnbinom qnbinom dnbinom rnbinom
Normal pnorm qnorm dnorm rnorm
Poisson ppois qpois dpois rpois
Student t pt qt dt rt
Studentized Range ptukey qtukey dtukey rtukey

Otras distribuciones (3)

Distrib. Comandos
Uniform punif qunif dunif runif
Weibull pweibull qweibull dweibull rweibull
Wilcox Rank pwilcox qwilcox dwilcox rwilcox
WilcoxSigned psignrank qsignrank dsignrank rsignrank

Timeline

Veremos que hay muchos ejemplos en los que la salida de R es una página de web que no puede alojarse dentro de otra página anidada

Los mapas y las hojas de proyecto son ejemplo de estos casos

Biblioteca para proyectos

library(timevis)

Crear etapas de un proyecto

data1 <- data.frame(
  id      = 1:4,
  content = c("Inicio", "Reunión_1",
              "Rev.Papers", "Modelado"),
  start   = c("2018-01-10", "2018-01-11",
              "2018-01-20", "2018-02-14 15:00:00"),
  end     = c(NA, NA, "2018-02-04", NA)
)

Timeview 2

Ejecute este comando a mano en la consola

    timevis(data1)