Ricardo R. Palma
Marzo 2019
Técnicas y Herramientas Modernas
Universidad Nacional de Cuyo - Facultad de IngenierÃa
http://www.cran.r-project.org/
For more details on authoring R presentations please visit https://support.rstudio.com/hc/en-us/articles/200486468.
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.
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
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"
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
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
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)
class(df$x)
[1] "numeric"
class(df$y)
[1] "integer"
class(df$fac)
[1] "factor"
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.
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.
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"
#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"
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"
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.
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)
installed.packages()
Package
abind "abind"
acepack "acepack"
alluvial "alluvial"
askpass "askpass"
assertthat "assertthat"
backports "backports"
base64enc "base64enc"
bgmfiles "bgmfiles"
BH "BH"
bibtex "bibtex"
BiocGenerics "BiocGenerics"
BiocInstaller "BiocInstaller"
bit "bit"
bit64 "bit64"
bitops "bitops"
blob "blob"
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"
crayon "crayon"
crosstalk "crosstalk"
crul "crul"
csvread "csvread"
curl "curl"
data.table "data.table"
data.tree "data.tree"
DBI "DBI"
DiagrammeR "DiagrammeR"
digest "digest"
downloader "downloader"
dplyr "dplyr"
e1071 "e1071"
ellipsis "ellipsis"
evaluate "evaluate"
extrafont "extrafont"
extrafontdb "extrafontdb"
fansi "fansi"
farver "farver"
fastmatch "fastmatch"
FinCal "FinCal"
forcats "forcats"
foreign "foreign"
Formula "Formula"
gbRd "gbRd"
generics "generics"
geojsonR "geojsonR"
geosphere "geosphere"
gepaf "gepaf"
ggforce "ggforce"
ggplot2 "ggplot2"
ggraph "ggraph"
ggrepel "ggrepel"
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"
ISOcodes "ISOcodes"
janeaustenr "janeaustenr"
jsonlite "jsonlite"
knitr "knitr"
labeling "labeling"
later "later"
latticeExtra "latticeExtra"
lazyeval "lazyeval"
leaflet "leaflet"
leaflet.extras "leaflet.extras"
lme4 "lme4"
lmtest "lmtest"
lubridate "lubridate"
magrittr "magrittr"
maps "maps"
maptools "maptools"
markdown "markdown"
MatrixModels "MatrixModels"
memoise "memoise"
mime "mime"
minqa "minqa"
mlogit "mlogit"
munsell "munsell"
nabor "nabor"
network "network"
nloptr "nloptr"
NLP "NLP"
openssl "openssl"
openxlsx "openxlsx"
osmar "osmar"
osrm "osrm"
pbkrtest "pbkrtest"
pillar "pillar"
pkgconfig "pkgconfig"
plogr "plogr"
plyr "plyr"
png "png"
polyclip "polyclip"
prettyunits "prettyunits"
processx "processx"
progress "progress"
promises "promises"
ps "ps"
purrr "purrr"
quantreg "quantreg"
R.methodsS3 "R.methodsS3"
R.oo "R.oo"
R.utils "R.utils"
R6 "R6"
raster "raster"
rbgm "rbgm"
rCarto "rCarto"
RColorBrewer "RColorBrewer"
Rcpp "Rcpp"
RcppArmadillo "RcppArmadillo"
RcppEigen "RcppEigen"
RcppParallel "RcppParallel"
RCurl "RCurl"
Rdpack "Rdpack"
readr "readr"
readxl "readxl"
rematch "rematch"
reshape2 "reshape2"
reticulate "reticulate"
rgdal "rgdal"
rgeos "rgeos"
rgexf "rgexf"
RGraphics "RGraphics"
Rgraphviz "Rgraphviz"
rio "rio"
rlang "rlang"
rmarkdown "rmarkdown"
Rook "Rook"
rprojroot "rprojroot"
RQDA "RQDA"
RSpectra "RSpectra"
RSQLite "RSQLite"
rstudioapi "rstudioapi"
Rttf2pt1 "Rttf2pt1"
rtweet "rtweet"
scales "scales"
shiny "shiny"
simmer "simmer"
simmer.plot "simmer.plot"
SnowballC "SnowballC"
sourcetools "sourcetools"
sp "sp"
spacyr "spacyr"
SparseM "SparseM"
statmod "statmod"
stopwords "stopwords"
stringi "stringi"
stringr "stringr"
sys "sys"
tibble "tibble"
tidyr "tidyr"
tidyselect "tidyselect"
tidytext "tidytext"
timevis "timevis"
tinytex "tinytex"
tm "tm"
tokenizers "tokenizers"
triebeard "triebeard"
tweenr "tweenr"
urltools "urltools"
utf8 "utf8"
viridis "viridis"
viridisLite "viridisLite"
visNetwork "visNetwork"
webshot "webshot"
widyr "widyr"
withr "withr"
wordcloud "wordcloud"
xfun "xfun"
XML "XML"
xtable "xtable"
yaml "yaml"
zip "zip"
zoo "zoo"
assertthat "assertthat"
base64enc "base64enc"
bindr "bindr"
bindrcpp "bindrcpp"
broom "broom"
cairoDevice "cairoDevice"
cli "cli"
colorspace "colorspace"
crayon "crayon"
crosstalk "crosstalk"
curl "curl"
data.table "data.table"
DBI "DBI"
dbplyr "dbplyr"
dichromat "dichromat"
digest "digest"
dplyr "dplyr"
ggplot2 "ggplot2"
glue "glue"
gtable "gtable"
hexbin "hexbin"
htmltools "htmltools"
htmlwidgets "htmlwidgets"
httpuv "httpuv"
httr "httr"
igraph "igraph"
irlba "irlba"
jsonlite "jsonlite"
labeling "labeling"
lazyeval "lazyeval"
littler "littler"
magrittr "magrittr"
mime "mime"
miniUI "miniUI"
mnormt "mnormt"
munsell "munsell"
NLP "NLP"
openssl "openssl"
pillar "pillar"
pkgconfig "pkgconfig"
pkgKitten "pkgKitten"
plotly "plotly"
plyr "plyr"
psych "psych"
purrr "purrr"
R6 "R6"
RColorBrewer "RColorBrewer"
Rcpp "Rcpp"
reshape2 "reshape2"
RGtk2 "RGtk2"
rjson "rjson"
rlang "rlang"
scales "scales"
shiny "shiny"
shinyjs "shinyjs"
slam "slam"
sourcetools "sourcetools"
stringi "stringi"
stringr "stringr"
tibble "tibble"
tidyr "tidyr"
tidyselect "tidyselect"
tm "tm"
utf8 "utf8"
viridisLite "viridisLite"
xml2 "xml2"
xtable "xtable"
yaml "yaml"
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"
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"
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"
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"
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"
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"
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"
e1071 "/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"
extrafont "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
extrafontdb "/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"
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"
gbRd "/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"
ggplot2 "/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"
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"
ISOcodes "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
janeaustenr "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
jsonlite "/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"
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"
lme4 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
lmtest "/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"
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"
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"
nloptr "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
NLP "/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"
osmar "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
osrm "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
pbkrtest "/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"
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"
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"
ps "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
purrr "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
quantreg "/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"
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"
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"
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"
rlang "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rmarkdown "/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"
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"
Rttf2pt1 "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
rtweet "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
scales "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
shiny "/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"
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"
statmod "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
stopwords "/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"
sys "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
tibble "/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"
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"
urltools "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
utf8 "/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"
XML "/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"
zip "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
zoo "/home/rpalma/R/x86_64-pc-linux-gnu-library/3.4"
assertthat "/usr/lib/R/site-library"
base64enc "/usr/lib/R/site-library"
bindr "/usr/lib/R/site-library"
bindrcpp "/usr/lib/R/site-library"
broom "/usr/lib/R/site-library"
cairoDevice "/usr/lib/R/site-library"
cli "/usr/lib/R/site-library"
colorspace "/usr/lib/R/site-library"
crayon "/usr/lib/R/site-library"
crosstalk "/usr/lib/R/site-library"
curl "/usr/lib/R/site-library"
data.table "/usr/lib/R/site-library"
DBI "/usr/lib/R/site-library"
dbplyr "/usr/lib/R/site-library"
dichromat "/usr/lib/R/site-library"
digest "/usr/lib/R/site-library"
dplyr "/usr/lib/R/site-library"
ggplot2 "/usr/lib/R/site-library"
glue "/usr/lib/R/site-library"
gtable "/usr/lib/R/site-library"
hexbin "/usr/lib/R/site-library"
htmltools "/usr/lib/R/site-library"
htmlwidgets "/usr/lib/R/site-library"
httpuv "/usr/lib/R/site-library"
httr "/usr/lib/R/site-library"
igraph "/usr/lib/R/site-library"
irlba "/usr/lib/R/site-library"
jsonlite "/usr/lib/R/site-library"
labeling "/usr/lib/R/site-library"
lazyeval "/usr/lib/R/site-library"
littler "/usr/lib/R/site-library"
magrittr "/usr/lib/R/site-library"
mime "/usr/lib/R/site-library"
miniUI "/usr/lib/R/site-library"
mnormt "/usr/lib/R/site-library"
munsell "/usr/lib/R/site-library"
NLP "/usr/lib/R/site-library"
openssl "/usr/lib/R/site-library"
pillar "/usr/lib/R/site-library"
pkgconfig "/usr/lib/R/site-library"
pkgKitten "/usr/lib/R/site-library"
plotly "/usr/lib/R/site-library"
plyr "/usr/lib/R/site-library"
psych "/usr/lib/R/site-library"
purrr "/usr/lib/R/site-library"
R6 "/usr/lib/R/site-library"
RColorBrewer "/usr/lib/R/site-library"
Rcpp "/usr/lib/R/site-library"
reshape2 "/usr/lib/R/site-library"
RGtk2 "/usr/lib/R/site-library"
rjson "/usr/lib/R/site-library"
rlang "/usr/lib/R/site-library"
scales "/usr/lib/R/site-library"
shiny "/usr/lib/R/site-library"
shinyjs "/usr/lib/R/site-library"
slam "/usr/lib/R/site-library"
sourcetools "/usr/lib/R/site-library"
stringi "/usr/lib/R/site-library"
stringr "/usr/lib/R/site-library"
tibble "/usr/lib/R/site-library"
tidyr "/usr/lib/R/site-library"
tidyselect "/usr/lib/R/site-library"
tm "/usr/lib/R/site-library"
utf8 "/usr/lib/R/site-library"
viridisLite "/usr/lib/R/site-library"
xml2 "/usr/lib/R/site-library"
xtable "/usr/lib/R/site-library"
yaml "/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
alluvial "0.1-2" NA
askpass "1.1" NA
assertthat "0.2.1" NA
backports "1.1.3" NA
base64enc "0.1-3" NA
bgmfiles "0.0.6" NA
BH "1.69.0-1" 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.1.1" NA
brew "1.0-6" NA
broom "0.5.1" NA
callr "3.2.0" 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.1" NA
classInt "0.3-1" NA
cli "1.1.0" NA
clipr "0.5.0" NA
colorspace "1.4-1" NA
corrplot "0.84" NA
crayon "1.3.4" NA
crosstalk "1.0.0" NA
crul "0.7.4" NA
csvread "1.2.1" NA
curl "3.3" NA
data.table "1.12.0" NA
data.tree "0.7.8" NA
DBI "1.0.0" NA
DiagrammeR "1.0.0" NA
digest "0.6.18" NA
downloader "0.4" NA
dplyr "0.8.0.1" NA
e1071 "1.7-1" NA
ellipsis "0.1.0" NA
evaluate "0.13" NA
extrafont "0.17" NA
extrafontdb "1.0" NA
fansi "0.4.0" NA
farver "1.1.0" NA
fastmatch "1.1-0" NA
FinCal "0.6.3" NA
forcats "0.4.0" NA
foreign "0.8-71" "recommended"
Formula "1.2-3" NA
gbRd "0.4-11" NA
generics "0.0.2" NA
geojsonR "1.0.6" NA
geosphere "1.5-7" NA
gepaf "0.1.1" NA
ggforce "0.2.1" NA
ggplot2 "3.1.0" NA
ggraph "1.0.2" NA
ggrepel "0.8.0" 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.0" NA
highr "0.8" NA
Hmisc "4.2-0" NA
hms "0.4.2" NA
htmlTable "1.13.1" NA
htmltools "0.3.6" NA
htmlwidgets "1.3" NA
httpcode "0.2.0" NA
httpuv "1.5.0" NA
httr "1.4.0" NA
hunspell "3.0" NA
igraph "1.2.4" NA
influenceR "0.1.0" NA
ISOcodes "2019.02.13" NA
janeaustenr "0.1.5" NA
jsonlite "1.6" NA
knitr "1.22" NA
labeling "0.3" 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
lme4 "1.1-21" NA
lmtest "0.9-36" NA
lubridate "1.7.4" NA
magrittr "1.5" NA
maps "3.3.0" NA
maptools "0.9-5" NA
markdown "0.9" NA
MatrixModels "0.4-1" NA
memoise "1.1.0" NA
mime "0.6" NA
minqa "1.2.4" NA
mlogit "0.4-1" NA
munsell "0.5.0" NA
nabor "0.5.0" NA
network "1.15" NA
nloptr "1.2.1" NA
NLP "0.2-0" NA
openssl "1.3" NA
openxlsx "4.1.0" NA
osmar "1.1-7" NA
osrm "3.2.0" NA
pbkrtest "0.4-7" NA
pillar "1.3.1" NA
pkgconfig "2.0.2" NA
plogr "0.2.0" NA
plyr "1.8.4" NA
png "0.1-7" NA
polyclip "1.10-0" NA
prettyunits "1.0.2" NA
processx "3.3.0" NA
progress "1.2.0" NA
promises "1.0.1" NA
ps "1.3.0" NA
purrr "0.3.2" NA
quantreg "5.38" NA
R.methodsS3 "1.7.1" NA
R.oo "1.22.0" NA
R.utils "2.8.0" NA
R6 "2.4.0" NA
raster "2.8-19" NA
rbgm "0.0.5" NA
rCarto "0.8" NA
RColorBrewer "1.1-2" NA
Rcpp "1.0.1" NA
RcppArmadillo "0.9.300.2.0" NA
RcppEigen "0.3.3.5.0" NA
RcppParallel "4.4.2" NA
RCurl "1.95-4.12" NA
Rdpack "0.10-1" NA
readr "1.3.1" NA
readxl "1.3.1" NA
rematch "1.0.1" NA
reshape2 "1.4.3" NA
reticulate "1.11.1" NA
rgdal "1.4-3" NA
rgeos "0.4-2" NA
rgexf "0.15.3" NA
RGraphics "2.0-14" NA
Rgraphviz "2.22.0" NA
rio "0.5.16" NA
rlang "0.3.3" NA
rmarkdown "1.12" NA
Rook "1.1-1" NA
rprojroot "1.3-2" NA
RQDA "0.3-1" NA
RSpectra "0.13-1" NA
RSQLite "2.1.1" NA
rstudioapi "0.10" NA
Rttf2pt1 "1.3.7" NA
rtweet "0.6.8" NA
scales "1.0.0" NA
shiny "1.2.0" NA
simmer "4.2.2" NA
simmer.plot "0.1.15" NA
SnowballC "0.6.0" NA
sourcetools "0.1.7" NA
sp "1.3-1" NA
spacyr "1.0" NA
SparseM "1.77" NA
statmod "1.4.30" NA
stopwords "0.9.0" NA
stringi "1.4.3" NA
stringr "1.4.0" NA
sys "3.1" NA
tibble "2.1.1" NA
tidyr "0.8.3" NA
tidyselect "0.2.5" NA
tidytext "0.2.0" NA
timevis "0.5" NA
tinytex "0.11" NA
tm "0.7-6" NA
tokenizers "0.2.1" NA
triebeard "0.3.0" NA
tweenr "1.0.1" NA
urltools "1.7.2" NA
utf8 "1.1.4" NA
viridis "0.5.1" NA
viridisLite "0.3.0" NA
visNetwork "2.0.6" NA
webshot "0.5.1" NA
widyr "0.1.1" NA
withr "2.1.2" NA
wordcloud "2.6" NA
xfun "0.6" NA
XML "3.98-1.19" NA
xtable "1.8-3" NA
yaml "2.2.0" NA
zip "2.0.1" NA
zoo "1.8-5" NA
assertthat "0.2.0" NA
base64enc "0.1-3" NA
bindr "0.1" NA
bindrcpp "0.2" NA
broom "0.4.3" NA
cairoDevice "2.24" NA
cli "1.0.0" NA
colorspace "1.3-2" NA
crayon "1.3.4" NA
crosstalk "1.0.0" NA
curl "3.1" NA
data.table "1.10.4-3" NA
DBI "0.7" NA
dbplyr "1.2.0" NA
dichromat "2.0-0" NA
digest "0.6.15" NA
dplyr "0.7.4" NA
ggplot2 "2.2.1" NA
glue "1.2.0" NA
gtable "0.2.0" NA
hexbin "1.27.1" NA
htmltools "0.3.6" NA
htmlwidgets "1.0" NA
httpuv "1.3.5" NA
httr "1.3.1" NA
igraph "1.1.2" NA
irlba "2.3.2" NA
jsonlite "1.5" NA
labeling "0.3" NA
lazyeval "0.2.1" NA
littler "0.3.3" NA
magrittr "1.5" NA
mime "0.5" NA
miniUI "0.1.1" NA
mnormt "1.5-5" NA
munsell "0.4.3" NA
NLP "0.1-11" NA
openssl "1.0.1" NA
pillar "1.0.1" NA
pkgconfig "2.0.1" NA
pkgKitten "0.1.4" NA
plotly "4.7.1" NA
plyr "1.8.4" NA
psych "1.7.8" NA
purrr "0.2.4" NA
R6 "2.2.2" NA
RColorBrewer "1.1-2" NA
Rcpp "0.12.15" NA
reshape2 "1.4.2" NA
RGtk2 "2.20.34" NA
rjson "0.2.15" NA
rlang "0.2.0" NA
scales "0.5.0" NA
shiny "1.0.5" NA
shinyjs "0.9.1" NA
slam "0.1-42" NA
sourcetools "0.1.6" NA
stringi "1.1.6" NA
stringr "1.3.0" NA
tibble "1.4.1" NA
tidyr "0.8.0" NA
tidyselect "0.2.4" NA
tm "0.7-2" NA
utf8 "1.1.3" NA
viridisLite "0.3.0" NA
xml2 "1.2.0" NA
xtable "1.8-2" NA
yaml "2.1.14" 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
alluvial NA
askpass NA
assertthat NA
backports "R (>= 3.0.0)"
base64enc "R (>= 2.9.0)"
bgmfiles NA
BH NA
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
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
crayon NA
crosstalk NA
crul NA
csvread "R (>= 2.15), methods"
curl "R (>= 3.0.0)"
data.table "R (>= 3.1.0)"
data.tree "R (>= 3.0)"
DBI "R (>= 3.0.0), methods"
DiagrammeR "R (>= 3.2.0)"
digest "R (>= 3.1.0)"
downloader NA
dplyr "R (>= 3.1.2)"
e1071 NA
ellipsis "R (>= 3.1)"
evaluate "R (>= 3.0.2)"
extrafont "R (>= 2.15)"
extrafontdb "R (>= 2.14)"
fansi "R (>= 3.1.0)"
farver NA
fastmatch NA
FinCal NA
forcats "R (>= 3.1)"
foreign "R (>= 3.0.0)"
Formula "R (>= 2.0.0), stats"
gbRd "tools"
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)"
ggplot2 "R (>= 3.1)"
ggraph "R (>= 2.10), ggplot2 (>= 2.0.0)"
ggrepel "R (>= 3.0.0), ggplot2 (>= 2.2.0)"
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.1)"
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.1)"
hunspell "R (>= 3.0.2)"
igraph "methods"
influenceR "R (>= 3.2.0)"
ISOcodes "R (>= 2.10.0)"
janeaustenr "R (>= 3.1.2)"
jsonlite "methods"
knitr "R (>= 3.1.0)"
labeling 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)"
lme4 "R (>= 3.2.0), Matrix (>= 1.2-1), methods, stats"
lmtest "R (>= 2.10.0), stats, zoo"
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)"
memoise NA
mime NA
minqa NA
mlogit "R (>= 2.10), Formula, zoo, lmtest"
munsell NA
nabor "R (>= 3.0.2)"
network "R (>= 2.10), utils"
nloptr NA
NLP "R (>= 3.2.0)"
openssl NA
openxlsx "R (>= 3.3.0)"
osmar "R (>= 2.10), methods, XML, RCurl, geosphere"
osrm "R (>= 2.10)"
pbkrtest "R (>= 3.2.3), lme4 (>= 1.1.10)"
pillar NA
pkgconfig NA
plogr NA
plyr "R (>= 3.1.0)"
png "R (>= 2.9.0)"
polyclip "R (>= 3.0.0)"
prettyunits NA
processx NA
progress NA
promises NA
ps "R (>= 3.1)"
purrr "R (>= 3.1)"
quantreg "R (>= 2.6), stats, SparseM"
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"
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
reshape2 "R (>= 3.1)"
reticulate "R (>= 3.0)"
rgdal "R (>= 3.3.0), methods, sp (>= 1.1-0)"
rgeos "R (>= 3.3.0)"
rgexf "XML, Rook, igraph"
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)"
rlang "R (>= 3.1.0)"
rmarkdown "R (>= 3.0)"
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)"
RSpectra "R (>= 3.0.2)"
RSQLite "R (>= 3.1.0)"
rstudioapi NA
Rttf2pt1 "R (>= 2.15)"
rtweet "R (>= 3.1.0)"
scales "R (>= 3.1)"
shiny "R (>= 3.0.2), methods"
simmer "R (>= 3.1.2)"
simmer.plot "R (>= 3.1.2), simmer (>= 3.6.0), ggplot2 (>= 2.2.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"
statmod "R (>= 1.6.1)"
stopwords "R (>= 2.10)"
stringi "R (>= 2.14)"
stringr "R (>= 3.1)"
sys NA
tibble "R (>= 3.1.0)"
tidyr "R (>= 3.1)"
tidyselect "R (>= 3.1)"
tidytext "R (>= 2.10)"
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)"
urltools "R (>= 2.10)"
utf8 "R (>= 2.10)"
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
XML "R (>= 2.13.0), methods, utils"
xtable "R (>= 2.10.0)"
yaml NA
zip NA
zoo "R (>= 3.1.0), stats"
assertthat NA
base64enc "R (>= 2.9.0)"
bindr NA
bindrcpp NA
broom NA
cairoDevice "R (>= 2.12.0)"
cli "R (>= 2.10)"
colorspace "R (>= 2.13.0), methods"
crayon NA
crosstalk NA
curl "R (>= 3.0.0)"
data.table "R (>= 3.0.0)"
DBI "R (>= 3.0.0), methods"
dbplyr "R (>= 3.2)"
dichromat "R (>= 2.10), stats"
digest "R (>= 2.4.1)"
dplyr "R (>= 3.1.2)"
ggplot2 "R (>= 3.1)"
glue "R (>= 3.1)"
gtable "R (>= 2.14)"
hexbin "R (>= 2.0.1), methods"
htmltools "R (>= 2.14.1)"
htmlwidgets NA
httpuv "R (>= 2.15.1), methods"
httr "R (>= 3.0.0)"
igraph "methods"
irlba "Matrix"
jsonlite "methods"
labeling NA
lazyeval "R (>= 3.1.0)"
littler NA
magrittr NA
mime NA
miniUI NA
mnormt "R (>= 2.2.0)"
munsell NA
NLP "R (>= 3.2.0)"
openssl NA
pillar NA
pkgconfig NA
pkgKitten NA
plotly "R (>= 3.2.0), ggplot2 (>= 2.2.1)"
plyr "R (>= 3.1.0)"
psych "R (>= 2.10)"
purrr "R (>= 3.1)"
R6 "R (>= 3.0)"
RColorBrewer "R (>= 2.0.0)"
Rcpp "R (>= 3.0.0)"
reshape2 NA
RGtk2 "R (>= 3.4.0)"
rjson "R (>= 3.1.0)"
rlang "R (>= 3.1.0)"
scales "R (>= 2.13)"
shiny "R (>= 3.0.2), methods"
shinyjs "R (>= 3.1.0)"
slam "R (>= 3.4.0)"
sourcetools "R (>= 3.0.2)"
stringi "R (>= 2.14)"
stringr "R (>= 3.1)"
tibble "R (>= 3.1.0)"
tidyr "R (>= 3.2)"
tidyselect "R (>= 3.1)"
tm "R (>= 3.2.0), NLP (>= 0.1-6.2)"
utf8 "R (>= 2.10)"
viridisLite "R (>= 2.10)"
xml2 "R (>= 3.1.0)"
xtable "R (>= 2.10.0)"
yaml NA
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
alluvial NA
askpass "sys (>= 2.1)"
assertthat "tools"
backports "utils"
base64enc NA
bgmfiles NA
BH NA
bibtex "stringr, utils"
BiocGenerics "methods, utils, graphics, stats, parallel"
BiocInstaller NA
bit NA
bit64 NA
bitops NA
blob "methods, prettyunits"
brew NA
broom "backports, dplyr, generics (>= 0.0.2), methods, nlme, purrr,\nreshape2, stringr, tibble, tidyr"
callr "processx (>= 3.3.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"
cli "assertthat, crayon (>= 1.3.4), methods, utils"
clipr "utils"
colorspace "graphics, grDevices, stats"
corrplot NA
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), mime"
csvread NA
curl NA
data.table "methods"
data.tree "R6, stringr, methods, DiagrammeR (>= 1.0.0)"
DBI 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.1.1), magrittr (>= 1.5),\nmethods, pkgconfig (>= 2.0.1), R6 (>= 2.2.2), Rcpp (>= 1.0.0),\nrlang (>= 0.3.0), tibble (>= 2.0.0), tidyselect (>= 0.2.5),\nutils"
e1071 "graphics, grDevices, class, stats, methods, utils"
ellipsis NA
evaluate "methods"
extrafont "extrafontdb, grDevices, utils, Rttf2pt1"
extrafontdb NA
fansi NA
farver "Rcpp (>= 0.12.15)"
fastmatch NA
FinCal "ggplot2, reshape2, RCurl"
forcats "ellipsis, magrittr, rlang, tibble"
foreign "methods, utils, stats"
Formula NA
gbRd 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"
ggplot2 "digest, grid, gtable (>= 0.1.1), lazyeval, MASS, mgcv, plyr\n(>= 1.7.1), reshape2, rlang (>= 0.2.1), scales (>= 0.5.0),\nstats, tibble, viridisLite, withr (>= 2.0.0)"
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)"
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"
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 (>= 0.9.1), 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"
ISOcodes NA
janeaustenr NA
jsonlite NA
knitr "evaluate (>= 0.10), highr, markdown, stringr (>= 0.6), yaml\n(>= 2.1.19), methods, xfun, tools"
labeling NA
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"
lme4 "graphics, grid, splines, utils, parallel, MASS, lattice, boot,\nnlme (>= 3.1-123), minqa (>= 1.1.15), nloptr (>= 1.0.4)"
lmtest "graphics"
lubridate "stringr, Rcpp (>= 0.12.13),"
magrittr NA
maps "graphics, utils"
maptools "foreign (>= 0.8), methods, grid, lattice, stats, utils,\ngrDevices"
markdown "utils, mime (>= 0.3)"
MatrixModels "stats, methods, Matrix (>= 1.1-5)"
memoise "digest (>= 0.6.3)"
mime "tools"
minqa "Rcpp (>= 0.9.10)"
mlogit "statmod, MASS, Rdpack"
munsell "colorspace, methods"
nabor "Rcpp (>= 0.11.2), methods"
network "tibble, magrittr"
nloptr NA
NLP "utils"
openssl "askpass"
openxlsx "methods, Rcpp, grDevices, stats, utils, zip"
osmar NA
osrm "jsonlite, RCurl, utils, stats, rgeos, methods, gepaf, raster,\nsp"
pbkrtest "Matrix (>= 1.2.3), parallel, MASS, methods"
pillar "cli (>= 1.0.0), crayon (>= 1.3.4), fansi (>= 0.4.0), methods,\nrlang (>= 0.3.0.1), utf8 (>= 1.1.3)"
pkgconfig "utils"
plogr NA
plyr "Rcpp (>= 0.11.0)"
png NA
polyclip NA
prettyunits "magrittr, assertthat, methods"
processx "ps (>= 1.2.0), R6, utils"
progress "hms, prettyunits, R6, crayon"
promises "R6, Rcpp, later, rlang, stats, magrittr"
ps "utils"
purrr "magrittr (>= 1.5), rlang (>= 0.3.1)"
quantreg "methods, graphics, Matrix, MatrixModels"
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"
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
reshape2 "plyr (>= 1.8.1), Rcpp, stringr"
reticulate "utils, graphics, jsonlite, Rcpp (>= 0.12.7), Matrix"
rgdal "grDevices, graphics, stats, utils"
rgeos "methods, sp (>= 1.1-0), utils, stats, graphics"
rgexf NA
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"
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), methods, stringr (>= 1.2.0)"
Rook "utils, tools, methods, brew"
rprojroot "backports"
RQDA "RGtk2 (>= 2.20), igraph, gWidgets (>= 0.0-31), methods"
RSpectra "Matrix (>= 1.1-0), Rcpp (>= 0.11.5)"
RSQLite "bit64, blob (>= 1.1.1), DBI (>= 1.0.0), memoise, methods,\npkgconfig, Rcpp (>= 0.12.7)"
rstudioapi NA
Rttf2pt1 NA
rtweet "httr (>= 1.3.0), jsonlite (>= 0.9.22), magrittr (>= 1.5.0),\ntibble (>= 1.3.4), utils"
scales "labeling, munsell (>= 0.5), R6, RColorBrewer, Rcpp,\nviridisLite"
shiny "utils, grDevices, httpuv (>= 1.4.4), mime (>= 0.3), jsonlite\n(>= 0.9.16), xtable, digest, htmltools (>= 0.3.5), R6 (>= 2.0),\nsourcetools, later (>= 0.7.2), promises (>= 1.0.1), tools,\ncrayon, rlang"
simmer "Rcpp, R6, magrittr, codetools, utils"
simmer.plot "DiagrammeR (>= 1.0.0), dplyr (>= 0.7.0), tidyr (>= 0.7.0),\nscales, utils"
SnowballC NA
sourcetools NA
sp "utils, stats, graphics, grDevices, lattice, grid"
spacyr "data.table, reticulate (>= 1.6)"
SparseM "graphics, stats, utils"
statmod "stats, graphics"
stopwords "ISOcodes"
stringi "tools, utils, stats"
stringr "glue (>= 1.2.0), magrittr, stringi (>= 1.1.7)"
sys NA
tibble "cli (>= 1.0.1), crayon (>= 1.3.4), fansi (>= 0.4.0), methods,\npillar (>= 1.3.1), pkgconfig (>= 2.0.2), rlang (>= 0.3.1),\nutils"
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, broom, Matrix, tokenizers,\njaneaustenr, purrr (>= 0.1.1), methods, stopwords"
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"
urltools "Rcpp, methods, triebeard"
utf8 NA
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 "tools"
XML NA
xtable "stats, utils"
yaml NA
zip NA
zoo "utils, graphics, grDevices, lattice (>= 0.20-27)"
assertthat "tools"
base64enc NA
bindr NA
bindrcpp "Rcpp, bindr"
broom "plyr, dplyr, tidyr, psych, stringr, reshape2, nlme, methods"
cairoDevice "grDevices"
cli "assertthat, crayon, methods"
colorspace "graphics, grDevices"
crayon "grDevices, methods, utils"
crosstalk "htmltools (>= 0.3.5), jsonlite, lazyeval, R6, shiny (>= 0.11),\nggplot2"
curl NA
data.table "methods"
DBI NA
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"
dichromat NA
digest NA
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"
ggplot2 "digest, grid, gtable (>= 0.1.1), MASS, plyr (>= 1.7.1),\nreshape2, scales (>= 0.4.1), stats, tibble, lazyeval"
glue "methods"
gtable "grid"
hexbin "lattice, grid, graphics, grDevices, stats, utils"
htmltools "utils, digest, Rcpp"
htmlwidgets "htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml"
httpuv "Rcpp (>= 0.11.0), utils"
httr "jsonlite, mime, curl (>= 0.9.1), openssl (>= 0.8), R6"
igraph "graphics, grDevices, irlba, magrittr, Matrix, pkgconfig (>=\n2.0.0), stats, utils"
irlba "stats, methods"
jsonlite NA
labeling NA
lazyeval NA
littler NA
magrittr NA
mime "tools"
miniUI "shiny (>= 0.13), htmltools (>= 0.3), utils"
mnormt NA
munsell "colorspace, methods"
NLP "utils"
openssl NA
pillar "cli, crayon (>= 1.3.4), methods, rlang, utf8"
pkgconfig "utils"
pkgKitten 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"
plyr "Rcpp (>= 0.11.0)"
psych "mnormt,parallel,stats,graphics,grDevices,methods,foreign,lattice,nlme"
purrr "magrittr (>= 1.5), rlang (>= 0.1), tibble"
R6 NA
RColorBrewer NA
Rcpp "methods, utils"
reshape2 "plyr (>= 1.8.1), stringr, Rcpp"
RGtk2 "methods"
rjson NA
rlang NA
scales "RColorBrewer, dichromat, plyr, munsell (>= 0.2), labeling,\nRcpp, R6, viridisLite"
shiny "utils, httpuv (>= 1.3.5), mime (>= 0.3), jsonlite (>= 0.9.16),\nxtable, digest, htmltools (>= 0.3.5), R6 (>= 2.0), sourcetools,\ntools"
shinyjs "digest (>= 0.6.8), htmltools (>= 0.2.6), jsonlite, miniUI (>=\n0.1.1), shiny (>= 0.11.1), stats"
slam "stats"
sourcetools NA
stringi "tools, utils, stats"
stringr "glue, magrittr, stringi (>= 1.1.6)"
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)"
tm "Rcpp, parallel, slam (>= 0.1-37), stats, tools, utils,\ngraphics, xml2"
utf8 NA
viridisLite NA
xml2 "Rcpp"
xtable "stats, utils"
yaml NA
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
alluvial NA
askpass NA
assertthat NA
backports NA
base64enc NA
bgmfiles NA
BH NA
bibtex NA
BiocGenerics NA
BiocInstaller NA
bit NA
bit64 NA
bitops NA
blob 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
crayon NA
crosstalk NA
crul NA
csvread NA
curl NA
data.table NA
data.tree NA
DBI NA
DiagrammeR NA
digest NA
downloader NA
dplyr "BH (>= 1.58.0-1), plogr (>= 0.1.10), Rcpp (>= 1.0.0)"
e1071 NA
ellipsis NA
evaluate NA
extrafont NA
extrafontdb NA
fansi NA
farver "Rcpp"
fastmatch NA
FinCal NA
forcats NA
foreign NA
Formula NA
gbRd NA
generics NA
geojsonR "Rcpp, RcppArmadillo (>= 0.7.6)"
geosphere NA
gepaf NA
ggforce "Rcpp, RcppEigen"
ggplot2 NA
ggraph "Rcpp"
ggrepel "Rcpp"
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
ISOcodes NA
janeaustenr NA
jsonlite NA
knitr NA
labeling NA
later "Rcpp, BH"
latticeExtra NA
lazyeval NA
leaflet NA
leaflet.extras NA
lme4 "Rcpp (>= 0.10.5), RcppEigen"
lmtest NA
lubridate "Rcpp,"
magrittr NA
maps NA
maptools NA
markdown NA
MatrixModels NA
memoise NA
mime NA
minqa "Rcpp"
mlogit NA
munsell NA
nabor "Rcpp, RcppEigen (>= 0.3.2.2.0), BH (>= 1.54.0-4)"
network NA
nloptr NA
NLP NA
openssl NA
openxlsx "Rcpp"
osmar NA
osrm NA
pbkrtest NA
pillar NA
pkgconfig NA
plogr NA
plyr "Rcpp"
png NA
polyclip NA
prettyunits NA
processx NA
progress NA
promises "later, Rcpp"
ps NA
purrr NA
quantreg NA
R.methodsS3 NA
R.oo NA
R.utils NA
R6 NA
raster "Rcpp"
rbgm 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
reshape2 "Rcpp"
reticulate "Rcpp"
rgdal "sp"
rgeos "sp"
rgexf NA
RGraphics NA
Rgraphviz NA
rio NA
rlang NA
rmarkdown NA
Rook NA
rprojroot NA
RQDA NA
RSpectra "Rcpp, RcppEigen (>= 0.3.2.2.0)"
RSQLite "BH, plogr (>= 0.2.0), Rcpp"
rstudioapi NA
Rttf2pt1 NA
rtweet NA
scales "Rcpp"
shiny NA
simmer "Rcpp (>= 0.12.9), BH (>= 1.62.0-1)"
simmer.plot NA
SnowballC NA
sourcetools NA
sp NA
spacyr NA
SparseM NA
statmod NA
stopwords NA
stringi NA
stringr NA
sys NA
tibble NA
tidyr "Rcpp"
tidyselect "Rcpp (>= 0.12.0),"
tidytext NA
timevis NA
tinytex NA
tm "BH, Rcpp"
tokenizers "Rcpp"
triebeard "Rcpp"
tweenr "Rcpp"
urltools "Rcpp"
utf8 NA
viridis NA
viridisLite NA
visNetwork NA
webshot NA
widyr NA
withr NA
wordcloud "Rcpp"
xfun NA
XML NA
xtable NA
yaml NA
zip NA
zoo NA
assertthat NA
base64enc NA
bindr NA
bindrcpp "Rcpp, plogr"
broom NA
cairoDevice NA
cli NA
colorspace NA
crayon NA
crosstalk NA
curl NA
data.table NA
DBI NA
dbplyr NA
dichromat NA
digest NA
dplyr "Rcpp (>= 0.12.0), bindrcpp, plogr"
ggplot2 NA
glue NA
gtable NA
hexbin NA
htmltools "Rcpp"
htmlwidgets NA
httpuv "Rcpp"
httr NA
igraph NA
irlba "Matrix"
jsonlite NA
labeling NA
lazyeval NA
littler NA
magrittr NA
mime NA
miniUI NA
mnormt NA
munsell NA
NLP NA
openssl NA
pillar NA
pkgconfig NA
pkgKitten NA
plotly NA
plyr "Rcpp"
psych NA
purrr NA
R6 NA
RColorBrewer NA
Rcpp NA
reshape2 "Rcpp"
RGtk2 NA
rjson NA
rlang NA
scales "Rcpp"
shiny NA
shinyjs NA
slam NA
sourcetools NA
stringi NA
stringr NA
tibble NA
tidyr "Rcpp"
tidyselect "Rcpp (>= 0.12.0),"
tm "Rcpp"
utf8 NA
viridisLite NA
xml2 "Rcpp (>= 0.12.12)"
xtable NA
yaml 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"
alluvial "devtools, testthat, reshape2, knitr, rmarkdown, dplyr"
askpass "testthat"
assertthat "testthat, covr"
backports NA
base64enc NA
bgmfiles "testthat, covr"
BH NA
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, pillar (>= 1.2.1), testthat"
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, pingr, ps, testthat, 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)"
cli "covr, fansi, mockery, testthat, webshot, withr"
clipr "covr, rstudioapi (>= 0.5), testthat (>= 2.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"
crayon "mockery, rstudioapi, testthat, withr"
crosstalk NA
crul "testthat, fauxpas (>= 0.1.0), webmockr (>= 0.1.0), knitr,\njsonlite"
csvread NA
curl "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, 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"
DiagrammeR "covr, DiagrammeRsvg, rsvg, knitr, testthat"
digest "knitr, rmarkdown"
downloader "testthat"
dplyr "bit64 (>= 0.9.7), callr (>= 3.1.1), covr (>= 3.0.1), DBI (>=\n0.7.14), dbplyr (>= 1.2.0), dtplyr (>= 0.0.2), ggplot2 (>=\n2.2.1), hms (>= 0.4.1), knitr (>= 1.19), Lahman (>= 3.0-1),\nlubridate (>= 1.7.4), MASS, mgcv (>= 1.8.23), microbenchmark\n(>= 1.4.4), nycflights13 (>= 0.2.2), rmarkdown (>= 1.8), RMySQL\n(>= 0.10.13), RPostgreSQL (>= 0.6.2), RSQLite (>= 2.0),\ntestthat (>= 2.0.0), withr (>= 2.1.1), broom (>= 0.5.1), purrr\n(>= 0.3.0), readr (>= 1.3.1), crayon (>= 1.3.4)"
e1071 "cluster, mlbench, nnet, randomForest, rpart, SparseM, xtable,\nMatrix, MASS, slam"
ellipsis "covr, testthat"
evaluate "testthat, lattice, ggplot2"
extrafont "fontcm"
extrafontdb NA
fansi "unitizer, knitr, rmarkdown"
farver "testthat, covr"
fastmatch NA
FinCal NA
forcats "covr, ggplot2, testthat, readr, knitr, rmarkdown, dplyr"
foreign NA
Formula NA
gbRd NA
generics "covr, pkgload, testthat, tibble"
geojsonR "testthat, covr, knitr, rmarkdown"
geosphere "methods, raster"
gepaf NA
ggforce "knitr, rmarkdown, sessioninfo, concaveman, deldir, reshape2,\nunits (>= 0.4-6)"
ggplot2 "covr, dplyr, ggplot2movies, hexbin, Hmisc, lattice, mapproj,\nmaps, maptools, multcomp, munsell, nlme, testthat (>= 0.11.0),\nvdiffr, quantreg, knitr, rgeos, rpart, rmarkdown, sf (>=\n0.3-4), svglite (>= 1.2.0.9001)"
ggraph "network, knitr, rmarkdown"
ggrepel "knitr, rmarkdown, testthat, gridExtra, devtools, prettydoc"
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"
ISOcodes NA
janeaustenr "dplyr, testthat"
jsonlite "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sp"
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
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"
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"
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
memoise "testthat, aws.s3, httr, covr"
mime NA
minqa NA
mlogit "knitr, car, nnet, lattice, AER, ggplot2, texreg, rmarkdown"
munsell "ggplot2, testthat"
nabor "testthat, RANN"
network "sna, statnet.common, testthat, covr"
nloptr "testthat (>= 0.8.1), knitr, rmarkdown, inline (>= 0.3.14)"
NLP NA
openssl "testthat, digest, knitr, rmarkdown, jsonlite, jose"
openxlsx "knitr, testthat"
osmar "igraph, sp (>= 0.9-93)"
osrm "cartography (>= 2.0.1)"
pbkrtest NA
pillar "knitr (>= 1.19), lubridate (>= 1.7.4), testthat (>= 2.0.0),\nwithr (>= 2.1.2)"
pkgconfig "covr, testthat, disposables (>= 1.0.3)"
plogr "Rcpp"
plyr "abind, testthat, tcltk, foreach, doParallel, itertools,\niterators, covr"
png NA
polyclip NA
prettyunits "testthat"
processx "callr, covr, crayon, debugme, parallel, testthat, withr"
progress "Rcpp, testthat, withr"
promises "testthat, future, knitr, rmarkdown"
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"
quantreg "tripack, akima, MASS, survival, rgl, logspline, nor1mix,\nFormula, zoo"
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"
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 "rstudioapi, rprojroot"
readr "curl, testthat, knitr, rmarkdown, stringi, covr, spelling"
readxl "covr, knitr, rmarkdown, rprojroot (>= 1.1), testthat"
rematch "covr, testthat"
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
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"
rlang "covr, crayon, magrittr, methods, pillar, rmarkdown, testthat\n(>= 2.0.0)"
rmarkdown "shiny (>= 0.11), tufte, testthat, digest, dygraphs, tibble,\nfs, callr (>= 2.0.0)"
Rook NA
rprojroot "testthat, mockr, knitr, withr, rmarkdown"
RQDA NA
RSpectra "knitr, rmarkdown, prettydoc"
RSQLite "DBItest, knitr, rmarkdown, testthat"
rstudioapi "testthat, knitr, rmarkdown"
Rttf2pt1 NA
rtweet "ggplot2, knitr, magick, openssl, readr, rmarkdown, testthat,\nwebshot, covr"
scales "dichromat, bit64, covr, hms, testthat (>= 2.0)"
shiny "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2, magrittr"
simmer "simmer.plot, parallel, testthat, knitr, rmarkdown, rticles"
simmer.plot "testthat, knitr, rmarkdown"
SnowballC NA
sourcetools "testthat"
sp "RColorBrewer, rgdal (>= 0.8-7), rgeos (>= 0.3-13), gstat,\nmaptools, deldir"
spacyr "knitr, quanteda, R.rsp, rmarkdown, spelling, testthat"
SparseM NA
statmod "MASS, tweedie"
stopwords "quanteda, testthat, covr"
stringi NA
stringr "covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat"
sys "unix (>= 1.4), spelling, testthat"
tibble "bench (>= 1.0.1), covr (>= 3.2.1), dplyr (>= 0.7.8),\nhtmltools (>= 0.3.6), import (>= 1.1.0), knitr (>= 1.21), mockr\n(>= 0.1), nycflights13 (>= 1.0.0), rmarkdown (>= 1.11),\ntestthat (>= 2.0.1), withr (>= 2.1.2)"
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, mallet, stm, data.table"
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"
urltools "testthat, knitr"
utf8 "knitr, rmarkdown, testthat"
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"
XML "bitops, RCurl"
xtable "knitr, spdep, splm, sphet, plm, zoo, survival"
yaml "RUnit"
zip "covr, processx, R6, testthat, withr"
zoo "coda, chron, DAAG, fts, ggplot2, mondate, scales,\nstrucchange, timeDate, timeSeries, tis, tseries, xts"
assertthat "testthat"
base64enc NA
bindr "testthat"
bindrcpp "testthat"
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"
cairoDevice NA
cli "covr, mockery, testthat, withr"
colorspace "datasets, stats, utils, KernSmooth, MASS, kernlab, mvtnorm,\nvcd, dichromat, tcltk, shiny, shinyjs"
crayon "mockery, rstudioapi, testthat, withr"
crosstalk NA
curl "testthat (>= 1.0.0), knitr, jsonlite, rmarkdown, magrittr,\nhttpuv, webutils"
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"
DBI "blob, covr, hms, knitr, magrittr, rprojroot, rmarkdown,\nRSQLite (>= 1.1-2), testthat, xml2"
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)"
dichromat NA
digest "knitr, rmarkdown"
dplyr "bit64, covr, dbplyr, dtplyr, DBI, ggplot2, hms, knitr, Lahman\n(>= 3.0-1), mgcv, microbenchmark, nycflights13, rmarkdown,\nRMySQL, RPostgreSQL, RSQLite, testthat, withr"
ggplot2 "covr, ggplot2movies, hexbin, Hmisc, lattice, mapproj, maps,\nmaptools, mgcv, multcomp, nlme, testthat (>= 0.11.0), quantreg,\nknitr, rpart, rmarkdown, svglite"
glue "testthat, covr, magrittr, crayon, knitr, rmarkdown, DBI,\nRSQLite, R.utils, forcats, microbenchmark, rprintf, stringr,\nggplot2"
gtable "testthat, covr"
hexbin "marray, affy, Biobase, limma"
htmltools "markdown, testthat"
htmlwidgets "knitr (>= 1.8)"
httpuv NA
httr "httpuv, jpeg, knitr, png, testthat (>= 0.8.0), readr, xml2,\nrmarkdown, covr"
igraph "ape, graph, igraphdata, NMF, rgl, scales, stats4, tcltk,\ntestthat"
irlba "PMA"
jsonlite "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sp"
labeling NA
lazyeval "knitr, rmarkdown (>= 0.2.65), testthat, covr"
littler "knitr, docopt, rcmdcheck"
magrittr "testthat, knitr"
mime NA
miniUI NA
mnormt NA
munsell "ggplot2, testthat"
NLP NA
openssl "testthat, digest, knitr, rmarkdown, jsonlite, jose"
pillar "knitr, testthat"
pkgconfig "covr, testthat, disposables (>= 1.0.3)"
pkgKitten "whoami (>= 1.1.0)"
plotly "MASS, maps, ggthemes, GGally, testthat, knitr, devtools,\nshiny (>= 0.14), curl, rmarkdown, Rserve, RSclient, Cairo,\nbroom, webshot, listviewer, dendextend, sf, RSelenium, png,\nIRdisplay"
plyr "abind, testthat, tcltk, foreach, doParallel, itertools,\niterators, covr"
psych "GPArotation, lavaan, sem, lme4,Rcsdp, graph, Rgraphviz"
purrr "covr, dplyr (>= 0.4.3), knitr, rmarkdown, testthat"
R6 "knitr, microbenchmark, pryr, testthat, ggplot2, scales"
RColorBrewer NA
Rcpp "RUnit, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten\n(>= 0.1.2)"
reshape2 "testthat (>= 0.8.0), lattice"
RGtk2 NA
rjson NA
rlang "crayon, knitr, methods, pillar, rmarkdown (>= 0.2.65),\ntestthat, covr"
scales "testthat (>= 0.8), bit64, covr, hms"
shiny "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2, magrittr"
shinyjs "knitr (>= 1.7), rmarkdown, rstudioapi (>= 0.5), shinyAce,\ntestthat (>= 0.9.1), V8 (>= 0.6)"
slam NA
sourcetools "testthat"
stringi NA
stringr "covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat"
tibble "covr, dplyr, import, knitr (>= 1.5.32), microbenchmark,\nmockr, nycflights13, testthat, rmarkdown, withr"
tidyr "covr, gapminder, knitr, rmarkdown, testthat"
tidyselect "covr, dplyr, testthat"
tm "antiword, filehash, methods, pdftools, Rcampdf, Rgraphviz,\nRpoppler, SnowballC, testthat, tm.lexicon.GeneralInquirer"
utf8 "corpus, knitr, rmarkdown, testthat"
viridisLite "hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr"
xml2 "testthat, curl, covr, knitr, rmarkdown, magrittr, httr"
xtable "knitr, lsmeans, spdep, splm, sphet, plm, zoo, survival"
yaml "testthat"
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
alluvial NA
askpass NA
assertthat NA
backports NA
base64enc "png"
bgmfiles NA
BH NA
bibtex NA
BiocGenerics NA
BiocInstaller NA
bit NA
bit64 NA
bitops NA
blob 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
crayon NA
crosstalk NA
crul NA
csvread "bit64"
curl NA
data.table NA
data.tree ""
DBI NA
DiagrammeR NA
digest NA
downloader NA
dplyr NA
e1071 NA
ellipsis NA
evaluate NA
extrafont NA
extrafontdb NA
fansi NA
farver NA
fastmatch NA
FinCal NA
forcats NA
foreign NA
Formula NA
gbRd NA
generics NA
geojsonR NA
geosphere NA
gepaf NA
ggforce NA
ggplot2 "sp"
ggraph NA
ggrepel 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
ISOcodes NA
janeaustenr NA
jsonlite NA
knitr NA
labeling NA
later NA
latticeExtra NA
lazyeval NA
leaflet NA
leaflet.extras NA
lme4 NA
lmtest NA
lubridate "chron, fts, timeSeries, timeDate, tis, tseries, xts, zoo"
magrittr NA
maps NA
maptools "gpclib, RArcInfo"
markdown NA
MatrixModels NA
memoise NA
mime NA
minqa NA
mlogit NA
munsell NA
nabor NA
network NA
nloptr NA
NLP "udpipe, spacyr, cleanNLP"
openssl NA
openxlsx NA
osmar NA
osrm NA
pbkrtest NA
pillar NA
pkgconfig NA
plogr NA
plyr NA
png NA
polyclip NA
prettyunits NA
processx NA
progress NA
promises NA
ps NA
purrr NA
quantreg NA
R.methodsS3 NA
R.oo NA
R.utils NA
R6 NA
raster NA
rbgm NA
rCarto NA
RColorBrewer NA
Rcpp NA
RcppArmadillo NA
RcppEigen NA
RcppParallel NA
RCurl NA
Rdpack NA
readr NA
readxl NA
rematch NA
reshape2 NA
reticulate NA
rgdal NA
rgeos NA
rgexf NA
RGraphics NA
Rgraphviz NA
rio NA
rlang NA
rmarkdown NA
Rook NA
rprojroot NA
RQDA "tcltk, rjpod, d3Network"
RSpectra NA
RSQLite NA
rstudioapi NA
Rttf2pt1 NA
rtweet NA
scales NA
shiny NA
simmer NA
simmer.plot NA
SnowballC NA
sourcetools NA
sp NA
spacyr NA
SparseM NA
statmod NA
stopwords NA
stringi NA
stringr NA
sys NA
tibble NA
tidyr NA
tidyselect NA
tidytext NA
timevis NA
tinytex NA
tm NA
tokenizers NA
triebeard NA
tweenr NA
urltools NA
utf8 NA
viridis NA
viridisLite NA
visNetwork NA
webshot NA
widyr NA
withr NA
wordcloud NA
xfun NA
XML NA
xtable NA
yaml NA
zip NA
zoo NA
assertthat NA
base64enc "png"
bindr NA
bindrcpp NA
broom NA
cairoDevice NA
cli NA
colorspace NA
crayon NA
crosstalk NA
curl NA
data.table NA
DBI NA
dbplyr NA
dichromat NA
digest NA
dplyr NA
ggplot2 "sp"
glue NA
gtable NA
hexbin NA
htmltools "knitr"
htmlwidgets "shiny (>= 0.12)"
httpuv NA
httr NA
igraph NA
irlba NA
jsonlite NA
labeling NA
lazyeval NA
littler NA
magrittr NA
mime NA
miniUI NA
mnormt NA
munsell NA
NLP NA
openssl NA
pillar NA
pkgconfig NA
pkgKitten NA
plotly NA
plyr NA
psych NA
purrr NA
R6 NA
RColorBrewer NA
Rcpp NA
reshape2 NA
RGtk2 NA
rjson NA
rlang NA
scales NA
shiny NA
shinyjs NA
slam "Matrix, SparseM, spam"
sourcetools NA
stringi NA
stringr NA
tibble NA
tidyr NA
tidyselect NA
tm NA
utf8 NA
viridisLite NA
xml2 NA
xtable NA
yaml 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 License_is_FOSS
abind "LGPL (>= 2)" NA
acepack "MIT + file LICENSE" NA
alluvial "MIT + file LICENSE" NA
askpass "MIT + file LICENSE" NA
assertthat "GPL-3" NA
backports "GPL-2" NA
base64enc "GPL-2 | GPL-3" NA
bgmfiles "CC0" NA
BH "BSL-1.0" NA
bibtex "GPL (>= 2)" NA
BiocGenerics "Artistic-2.0" NA
BiocInstaller "Artistic-2.0" NA
bit "GPL-2" NA
bit64 "GPL-2" NA
bitops "GPL (>= 2)" NA
blob "GPL-3" NA
brew "GPL-2" NA
broom "MIT + file LICENSE" NA
callr "MIT + file LICENSE" NA
car "GPL (>= 2)" NA
carData "GPL (>= 2)" NA
caTools "GPL-3" NA
cellranger "MIT + file LICENSE" NA
checkmate "BSD_3_clause + file LICENSE" NA
classInt "GPL (>= 2)" NA
cli "MIT + file LICENSE" NA
clipr "GPL-3" NA
colorspace "BSD_3_clause + file LICENSE" NA
corrplot "GPL" NA
crayon "MIT + file LICENSE" NA
crosstalk "MIT + file LICENSE" NA
crul "MIT + file LICENSE" NA
csvread "Apache License (== 2.0)" NA
curl "MIT + file LICENSE" NA
data.table "MPL-2.0 | file LICENSE" NA
data.tree "GPL (>= 2)" NA
DBI "LGPL (>= 2)" NA
DiagrammeR "MIT + file LICENSE" NA
digest "GPL (>= 2)" NA
downloader "GPL-2" NA
dplyr "MIT + file LICENSE" NA
e1071 "GPL-2" NA
ellipsis "GPL-3" NA
evaluate "MIT + file LICENSE" NA
extrafont "GPL-2" NA
extrafontdb "GPL-2" NA
fansi "GPL (>= 2)" NA
farver "MIT + file LICENSE" NA
fastmatch "GPL-2" NA
FinCal "GPL (>= 2)" NA
forcats "GPL-3" NA
foreign "GPL (>= 2)" NA
Formula "GPL-2 | GPL-3" NA
gbRd "GPL (>= 2)" NA
generics "GPL-2" NA
geojsonR "MIT + file LICENSE" NA
geosphere "GPL (>= 3)" NA
gepaf "GPL-3" NA
ggforce "MIT + file LICENSE" NA
ggplot2 "GPL-2 | file LICENSE" NA
ggraph "GPL-3" NA
ggrepel "GPL-3 | file LICENSE" NA
glue "MIT + file LICENSE" NA
graph "Artistic-2.0" NA
gridExtra "GPL (>= 2)" NA
gtable "GPL-2" NA
gWidgets "GPL (>= 2)" NA
gWidgetsRGtk2 "GPL (>= 2)" NA
haven "MIT + file LICENSE" NA
highr "GPL" NA
Hmisc "GPL (>= 2)" NA
hms "GPL-3" NA
htmlTable "GPL (>= 3)" NA
htmltools "GPL (>= 2)" NA
htmlwidgets "MIT + file LICENSE" NA
httpcode "MIT + file LICENSE" NA
httpuv "GPL (>= 2) | file LICENSE" NA
httr "MIT + file LICENSE" NA
hunspell "GPL-2 | LGPL-2.1 | MPL-1.1" NA
igraph "GPL (>= 2)" NA
influenceR "GPL-2" NA
ISOcodes "GPL-2" NA
janeaustenr "MIT + file LICENSE" NA
jsonlite "MIT + file LICENSE" NA
knitr "GPL" NA
labeling "MIT + file LICENSE | Unlimited" NA
later "GPL (>= 2)" NA
latticeExtra "GPL (>= 2)" NA
lazyeval "GPL-3" NA
leaflet "GPL-3" NA
leaflet.extras "GPL-3 | file LICENSE" NA
lme4 "GPL (>= 2)" NA
lmtest "GPL-2 | GPL-3" NA
lubridate "GPL (>= 2)" NA
magrittr "MIT + file LICENSE" NA
maps "GPL-2" NA
maptools "GPL (>= 2)" NA
markdown "GPL-2" NA
MatrixModels "GPL (>= 2)" NA
memoise "MIT + file LICENSE" NA
mime "GPL" NA
minqa "GPL-2" NA
mlogit "GPL (>= 2)" NA
munsell "MIT + file LICENSE" NA
nabor "BSD_3_clause + file LICENSE" NA
network "GPL (>= 2)" NA
nloptr "LGPL-3" NA
NLP "GPL-3" NA
openssl "MIT + file LICENSE" NA
openxlsx "MIT + file LICENSE" NA
osmar "GPL-2" NA
osrm "GPL-3" NA
pbkrtest "GPL (>= 2)" NA
pillar "GPL-3" NA
pkgconfig "MIT + file LICENSE" NA
plogr "MIT + file LICENSE" NA
plyr "MIT + file LICENSE" NA
png "GPL-2 | GPL-3" NA
polyclip "BSL" NA
prettyunits "MIT + file LICENSE" NA
processx "MIT + file LICENSE" NA
progress "MIT + file LICENSE" NA
promises "MIT + file LICENSE" NA
ps "BSD_3_clause + file LICENSE" NA
purrr "GPL-3 | file LICENSE" NA
quantreg "GPL (>= 2)" NA
R.methodsS3 "LGPL (>= 2.1)" NA
R.oo "LGPL (>= 2.1)" NA
R.utils "LGPL (>= 2.1)" NA
R6 "MIT + file LICENSE" NA
raster "GPL (>= 3)" NA
rbgm "GPL-3" NA
rCarto "GPL (>= 2.0)" NA
RColorBrewer "Apache License 2.0" NA
Rcpp "GPL (>= 2)" NA
RcppArmadillo "GPL (>= 2)" NA
RcppEigen "GPL (>= 2) | file LICENSE" NA
RcppParallel "GPL-2" NA
RCurl "BSD" NA
Rdpack "GPL (>= 2)" NA
readr "GPL (>= 2) | file LICENSE" NA
readxl "GPL-3" NA
rematch "MIT + file LICENSE" NA
reshape2 "MIT + file LICENSE" NA
reticulate "Apache License 2.0" NA
rgdal "GPL (>= 2)" NA
rgeos "GPL (>= 2)" NA
rgexf "GPL (>= 3)" NA
RGraphics "GPL" NA
Rgraphviz "EPL" NA
rio "GPL-2" NA
rlang "GPL-3" NA
rmarkdown "GPL-3" NA
Rook "GPL-2" NA
rprojroot "GPL-3" NA
RQDA "BSD_3_clause + file LICENSE" NA
RSpectra "MPL (>= 2)" NA
RSQLite "LGPL (>= 2)" NA
rstudioapi "MIT + file LICENSE" NA
Rttf2pt1 "file LICENSE" "yes"
rtweet "MIT + file LICENSE" NA
scales "MIT + file LICENSE" NA
shiny "GPL-3 | file LICENSE" NA
simmer "GPL (>= 2)" NA
simmer.plot "MIT + file LICENSE" NA
SnowballC "BSD_3_clause + file LICENSE" NA
sourcetools "MIT + file LICENSE" NA
sp "GPL (>= 2)" NA
spacyr "GPL-3" NA
SparseM "GPL (>= 2)" NA
statmod "GPL-2 | GPL-3" NA
stopwords "MIT + file LICENSE" NA
stringi "file LICENSE" "yes"
stringr "GPL-2 | file LICENSE" NA
sys "MIT + file LICENSE" NA
tibble "MIT + file LICENSE" NA
tidyr "MIT + file LICENSE" NA
tidyselect "GPL-3" NA
tidytext "MIT + file LICENSE" NA
timevis "MIT + file LICENSE" NA
tinytex "MIT + file LICENSE" NA
tm "GPL-3" NA
tokenizers "MIT + file LICENSE" NA
triebeard "MIT + file LICENSE" NA
tweenr "MIT + file LICENSE" NA
urltools "MIT + file LICENSE" NA
utf8 "Apache License (== 2.0) | file LICENSE" NA
viridis "MIT + file LICENSE" NA
viridisLite "MIT + file LICENSE" NA
visNetwork "MIT + file LICENSE" NA
webshot "GPL-2" NA
widyr "MIT + file LICENSE" NA
withr "GPL (>= 2)" NA
wordcloud "LGPL-2.1" NA
xfun "MIT + file LICENSE" NA
XML "BSD_2_clause + file LICENSE" NA
xtable "GPL (>= 2)" NA
yaml "BSD_3_clause + file LICENSE" NA
zip "CC0" NA
zoo "GPL-2 | GPL-3" NA
assertthat "GPL-3" NA
base64enc "GPL-2 | GPL-3" NA
bindr "MIT + file LICENSE" NA
bindrcpp "MIT + file LICENSE" NA
broom "MIT + file LICENSE" NA
cairoDevice "GPL" NA
cli "MIT + file LICENSE" NA
colorspace "BSD_3_clause + file LICENSE" NA
crayon "MIT + file LICENSE" NA
crosstalk "MIT + file LICENSE" NA
curl "MIT + file LICENSE" NA
data.table "GPL-3 | file LICENSE" NA
DBI "LGPL (>= 2)" NA
dbplyr "MIT + file LICENSE" NA
dichromat "GPL-2" NA
digest "GPL (>= 2)" NA
dplyr "MIT + file LICENSE" NA
ggplot2 "GPL-2 | file LICENSE" NA
glue "MIT + file LICENSE" NA
gtable "GPL-2" NA
hexbin "GPL-2" NA
htmltools "GPL (>= 2)" NA
htmlwidgets "MIT + file LICENSE" NA
httpuv "GPL-3 | file LICENSE" NA
httr "MIT + file LICENSE" NA
igraph "GPL (>= 2)" NA
irlba "GPL-3" NA
jsonlite "MIT + file LICENSE" NA
labeling "MIT + file LICENSE | Unlimited" NA
lazyeval "GPL-3" NA
littler "GPL (>= 2)" NA
magrittr "MIT + file LICENSE" NA
mime "GPL" NA
miniUI "GPL-3" NA
mnormt "GPL-2 | GPL-3" NA
munsell "MIT + file LICENSE" NA
NLP "GPL-3" NA
openssl "MIT + file LICENSE" NA
pillar "GPL-3" NA
pkgconfig "MIT + file LICENSE" NA
pkgKitten "GPL (>= 2)" NA
plotly "MIT + file LICENSE" NA
plyr "MIT + file LICENSE" NA
psych "GPL (>= 2)" NA
purrr "GPL-3 | file LICENSE" NA
R6 "MIT + file LICENSE" NA
RColorBrewer "Apache License 2.0" NA
Rcpp "GPL (>= 2)" NA
reshape2 "MIT + file LICENSE" NA
RGtk2 "GPL" NA
rjson "GPL-2" NA
rlang "GPL-3" NA
scales "MIT + file LICENSE" NA
shiny "GPL-3 | file LICENSE" NA
shinyjs "AGPL-3" NA
slam "GPL-2" NA
sourcetools "MIT + file LICENSE" NA
stringi "file LICENSE" "yes"
stringr "GPL-2 | file LICENSE" NA
tibble "MIT + file LICENSE" NA
tidyr "MIT + file LICENSE" NA
tidyselect "GPL-3" NA
tm "GPL-3" NA
utf8 "Apache License (== 2.0) | file LICENSE" NA
viridisLite "MIT + file LICENSE" NA
xml2 "GPL (>= 2)" NA
xtable "GPL (>= 2)" NA
yaml "BSD_3_clause + file LICENSE" NA
base "Part of R 3.4.4" NA
boot "Unlimited" NA
class "GPL-2 | GPL-3" NA
cluster "GPL (>= 2)" NA
codetools "GPL" NA
compiler "Part of R 3.4.4" NA
datasets "Part of R 3.4.4" NA
foreign "GPL (>= 2)" NA
graphics "Part of R 3.4.4" NA
grDevices "Part of R 3.4.4" NA
grid "Part of R 3.4.4" NA
KernSmooth "Unlimited" NA
lattice "GPL (>= 2)" NA
MASS "GPL-2 | GPL-3" NA
Matrix "GPL (>= 2) | file LICENCE" NA
methods "Part of R 3.4.4" NA
mgcv "GPL (>= 2)" NA
nlme "GPL (>= 2) | file LICENCE" NA
nnet "GPL-2 | GPL-3" NA
parallel "Part of R 3.4.4" NA
rpart "GPL-2 | GPL-3" NA
spatial "GPL-2 | GPL-3" NA
splines "Part of R 3.4.4" NA
stats "Part of R 3.4.4" NA
stats4 "Part of R 3.4.4" NA
survival "LGPL (>= 2)" NA
tcltk "Part of R 3.4.4" NA
tools "Part of R 3.4.4" NA
utils "Part of R 3.4.4" NA
License_restricts_use OS_type MD5sum NeedsCompilation
abind NA NA NA "no"
acepack NA NA NA "yes"
alluvial NA NA NA "no"
askpass NA NA NA "yes"
assertthat NA NA NA "no"
backports NA NA NA "yes"
base64enc NA NA NA "yes"
bgmfiles NA NA NA "no"
BH NA NA NA "no"
bibtex NA NA NA "yes"
BiocGenerics NA NA NA "no"
BiocInstaller NA NA NA "no"
bit NA NA NA "yes"
bit64 NA NA NA "yes"
bitops NA NA NA "yes"
blob NA NA NA "no"
brew NA NA NA NA
broom NA NA NA "no"
callr NA NA NA "no"
car NA NA NA "no"
carData NA NA NA "no"
caTools NA NA NA "yes"
cellranger NA NA NA "no"
checkmate NA NA NA "yes"
classInt NA NA NA "yes"
cli NA NA NA "no"
clipr NA NA NA "no"
colorspace NA NA NA "yes"
corrplot NA NA NA "no"
crayon NA NA NA "no"
crosstalk NA NA NA "no"
crul NA NA NA "no"
csvread NA NA NA "yes"
curl NA NA NA "yes"
data.table NA NA NA "yes"
data.tree NA NA NA "no"
DBI NA NA NA "no"
DiagrammeR NA NA NA "no"
digest NA NA NA "yes"
downloader NA NA NA "no"
dplyr NA NA NA "yes"
e1071 NA NA NA "yes"
ellipsis NA NA NA "yes"
evaluate NA NA NA "no"
extrafont NA NA NA "no"
extrafontdb NA NA NA NA
fansi NA NA NA "yes"
farver NA NA NA "yes"
fastmatch NA NA NA "yes"
FinCal NA NA NA "no"
forcats NA NA NA "no"
foreign NA NA NA "yes"
Formula NA NA NA "no"
gbRd NA NA NA NA
generics NA NA NA "no"
geojsonR NA NA NA "yes"
geosphere NA NA NA "yes"
gepaf NA NA NA "no"
ggforce NA NA NA "yes"
ggplot2 NA NA NA "no"
ggraph NA NA NA "yes"
ggrepel NA NA NA "yes"
glue NA NA NA "yes"
graph NA NA NA "yes"
gridExtra NA NA NA "no"
gtable NA NA NA "no"
gWidgets NA NA NA "no"
gWidgetsRGtk2 NA NA NA "no"
haven NA NA NA "yes"
highr NA NA NA "no"
Hmisc NA NA NA "yes"
hms NA NA NA "no"
htmlTable NA NA NA "no"
htmltools NA NA NA "yes"
htmlwidgets NA NA NA "no"
httpcode NA NA NA "no"
httpuv NA NA NA "yes"
httr NA NA NA "no"
hunspell NA NA NA "yes"
igraph NA NA NA "yes"
influenceR NA NA NA "yes"
ISOcodes NA NA NA "no"
janeaustenr NA NA NA "no"
jsonlite NA NA NA "yes"
knitr NA NA NA "no"
labeling NA NA NA "no"
later NA NA NA "yes"
latticeExtra NA NA NA "no"
lazyeval NA NA NA "yes"
leaflet NA NA NA "no"
leaflet.extras NA NA NA "no"
lme4 NA NA NA "yes"
lmtest NA NA NA "yes"
lubridate NA NA NA "yes"
magrittr NA NA NA "no"
maps NA NA NA "yes"
maptools NA NA NA "yes"
markdown NA NA NA "yes"
MatrixModels NA NA NA "no"
memoise NA NA NA "no"
mime NA NA NA "yes"
minqa NA NA NA "yes"
mlogit NA NA NA "no"
munsell NA NA NA "no"
nabor NA NA NA "yes"
network NA NA NA "yes"
nloptr NA NA NA "yes"
NLP NA NA NA "no"
openssl NA NA NA "yes"
openxlsx NA NA NA "yes"
osmar NA NA NA "no"
osrm NA NA NA "no"
pbkrtest NA NA NA "no"
pillar NA NA NA "no"
pkgconfig NA NA NA "no"
plogr NA NA NA "no"
plyr NA NA NA "yes"
png NA NA NA "yes"
polyclip NA NA NA "yes"
prettyunits NA NA NA "no"
processx NA NA NA "yes"
progress NA NA NA "no"
promises NA NA NA "yes"
ps NA NA NA "yes"
purrr NA NA NA "yes"
quantreg NA NA NA "yes"
R.methodsS3 NA NA NA "no"
R.oo NA NA NA "no"
R.utils NA NA NA "no"
R6 NA NA NA "no"
raster NA NA NA "yes"
rbgm NA NA NA "no"
rCarto NA NA NA "no"
RColorBrewer NA NA NA "no"
Rcpp NA NA NA "yes"
RcppArmadillo NA NA NA "yes"
RcppEigen NA NA NA "yes"
RcppParallel NA NA NA "yes"
RCurl NA NA NA "yes"
Rdpack NA NA NA "no"
readr NA NA NA "yes"
readxl NA NA NA "yes"
rematch NA NA NA "no"
reshape2 NA NA NA "yes"
reticulate NA NA NA "yes"
rgdal NA NA NA "yes"
rgeos NA NA NA "yes"
rgexf NA NA NA "yes"
RGraphics NA NA NA "no"
Rgraphviz NA NA NA "yes"
rio NA NA NA "no"
rlang NA NA NA "yes"
rmarkdown NA NA NA "no"
Rook NA NA NA "yes"
rprojroot NA NA NA "no"
RQDA NA NA NA "no"
RSpectra NA NA NA "yes"
RSQLite NA NA NA "yes"
rstudioapi NA NA NA "no"
Rttf2pt1 NA NA NA "yes"
rtweet NA NA NA "no"
scales NA NA NA "yes"
shiny NA NA NA "no"
simmer NA NA NA "yes"
simmer.plot NA NA NA "no"
SnowballC NA NA NA "yes"
sourcetools NA NA NA "yes"
sp NA NA NA "yes"
spacyr NA NA NA "no"
SparseM NA NA NA "yes"
statmod NA NA NA "yes"
stopwords NA NA NA "no"
stringi NA NA NA "yes"
stringr NA NA NA "no"
sys NA NA NA "yes"
tibble NA NA NA "yes"
tidyr NA NA NA "yes"
tidyselect NA NA NA "yes"
tidytext NA NA NA "no"
timevis NA NA NA "no"
tinytex NA NA NA "no"
tm NA NA NA "yes"
tokenizers NA NA NA "yes"
triebeard NA NA NA "yes"
tweenr NA NA NA "yes"
urltools NA NA NA "yes"
utf8 NA NA NA "yes"
viridis NA NA NA "no"
viridisLite NA NA NA "no"
visNetwork NA NA NA "no"
webshot NA NA NA "no"
widyr NA NA NA "no"
withr NA NA NA "no"
wordcloud NA NA NA "yes"
xfun NA NA NA "no"
XML NA NA NA "yes"
xtable NA NA NA "no"
yaml NA NA NA "yes"
zip NA NA NA "yes"
zoo NA NA NA "yes"
assertthat NA NA NA "no"
base64enc NA NA NA "yes"
bindr NA NA NA "no"
bindrcpp NA NA NA "yes"
broom NA NA NA "no"
cairoDevice NA NA NA "yes"
cli NA NA NA "no"
colorspace NA NA NA "yes"
crayon NA NA NA "no"
crosstalk NA NA NA "no"
curl NA NA NA "yes"
data.table NA NA NA "yes"
DBI NA NA NA "no"
dbplyr NA NA NA "no"
dichromat NA NA NA NA
digest NA NA NA "yes"
dplyr NA NA NA "yes"
ggplot2 NA NA NA "no"
glue NA NA NA "yes"
gtable NA NA NA "no"
hexbin NA NA NA "yes"
htmltools NA NA NA "yes"
htmlwidgets NA NA NA "no"
httpuv NA NA NA "yes"
httr NA NA NA "no"
igraph NA NA NA "yes"
irlba NA NA NA "yes"
jsonlite NA NA NA "yes"
labeling NA NA NA "no"
lazyeval NA NA NA "yes"
littler NA "unix" NA "yes"
magrittr NA NA NA "no"
mime NA NA NA "yes"
miniUI NA NA NA "no"
mnormt NA NA NA "yes"
munsell NA NA NA "no"
NLP NA NA NA "no"
openssl NA NA NA "yes"
pillar NA NA NA "no"
pkgconfig NA NA NA "no"
pkgKitten NA NA NA "no"
plotly NA NA NA "no"
plyr NA NA NA "yes"
psych NA NA NA "no"
purrr NA NA NA "yes"
R6 NA NA NA "no"
RColorBrewer NA NA NA "no"
Rcpp NA NA NA "yes"
reshape2 NA NA NA "yes"
RGtk2 NA NA NA "yes"
rjson NA NA NA "yes"
rlang NA NA NA "yes"
scales NA NA NA "yes"
shiny NA NA NA "no"
shinyjs NA NA NA "no"
slam NA NA NA "yes"
sourcetools NA NA NA "yes"
stringi NA NA NA "yes"
stringr NA NA NA "no"
tibble NA NA NA "yes"
tidyr NA NA NA "yes"
tidyselect NA NA NA "yes"
tm NA NA NA "yes"
utf8 NA NA NA "yes"
viridisLite NA NA NA "no"
xml2 NA NA NA "yes"
xtable NA NA NA "no"
yaml NA NA NA "yes"
base NA NA NA NA
boot NA NA NA "no"
class NA NA NA "yes"
cluster NA NA NA "yes"
codetools NA NA NA "no"
compiler NA NA NA NA
datasets NA NA NA NA
foreign NA NA NA "yes"
graphics NA NA NA "yes"
grDevices NA NA NA "yes"
grid NA NA NA "yes"
KernSmooth NA NA NA "yes"
lattice NA NA NA "yes"
MASS NA NA NA "yes"
Matrix NA NA NA "yes"
methods NA NA NA "yes"
mgcv NA NA NA "yes"
nlme NA NA NA "yes"
nnet NA NA NA "yes"
parallel NA NA NA "yes"
rpart NA NA NA "yes"
spatial NA NA NA "yes"
splines NA NA NA "yes"
stats NA NA NA "yes"
stats4 NA NA NA NA
survival NA NA NA "yes"
tcltk NA NA NA "yes"
tools NA NA NA "yes"
utils NA NA NA "yes"
Built
abind "3.4.4"
acepack "3.4.4"
alluvial "3.4.4"
askpass "3.4.4"
assertthat "3.4.4"
backports "3.4.4"
base64enc "3.4.4"
bgmfiles "3.4.4"
BH "3.4.4"
bibtex "3.4.4"
BiocGenerics "3.4.4"
BiocInstaller "3.4.4"
bit "3.4.4"
bit64 "3.4.4"
bitops "3.4.4"
blob "3.4.4"
brew "3.4.4"
broom "3.4.4"
callr "3.4.4"
car "3.4.4"
carData "3.4.4"
caTools "3.4.4"
cellranger "3.4.4"
checkmate "3.4.4"
classInt "3.4.4"
cli "3.4.4"
clipr "3.4.4"
colorspace "3.4.4"
corrplot "3.4.4"
crayon "3.4.4"
crosstalk "3.4.4"
crul "3.4.4"
csvread "3.4.4"
curl "3.4.4"
data.table "3.4.4"
data.tree "3.4.4"
DBI "3.4.4"
DiagrammeR "3.4.4"
digest "3.4.4"
downloader "3.4.4"
dplyr "3.4.4"
e1071 "3.4.4"
ellipsis "3.4.4"
evaluate "3.4.4"
extrafont "3.4.4"
extrafontdb "3.4.4"
fansi "3.4.4"
farver "3.4.4"
fastmatch "3.4.4"
FinCal "3.4.4"
forcats "3.4.4"
foreign "3.4.4"
Formula "3.4.4"
gbRd "3.4.4"
generics "3.4.4"
geojsonR "3.4.4"
geosphere "3.4.4"
gepaf "3.4.4"
ggforce "3.4.4"
ggplot2 "3.4.4"
ggraph "3.4.4"
ggrepel "3.4.4"
glue "3.4.4"
graph "3.4.4"
gridExtra "3.4.4"
gtable "3.4.4"
gWidgets "3.4.4"
gWidgetsRGtk2 "3.4.4"
haven "3.4.4"
highr "3.4.4"
Hmisc "3.4.4"
hms "3.4.4"
htmlTable "3.4.4"
htmltools "3.4.4"
htmlwidgets "3.4.4"
httpcode "3.4.4"
httpuv "3.4.4"
httr "3.4.4"
hunspell "3.4.4"
igraph "3.4.4"
influenceR "3.4.4"
ISOcodes "3.4.4"
janeaustenr "3.4.4"
jsonlite "3.4.4"
knitr "3.4.4"
labeling "3.4.4"
later "3.4.4"
latticeExtra "3.4.4"
lazyeval "3.4.4"
leaflet "3.4.4"
leaflet.extras "3.4.4"
lme4 "3.4.4"
lmtest "3.4.4"
lubridate "3.4.4"
magrittr "3.4.4"
maps "3.4.4"
maptools "3.4.4"
markdown "3.4.4"
MatrixModels "3.4.4"
memoise "3.4.4"
mime "3.4.4"
minqa "3.4.4"
mlogit "3.4.4"
munsell "3.4.4"
nabor "3.4.4"
network "3.4.4"
nloptr "3.4.4"
NLP "3.4.4"
openssl "3.4.4"
openxlsx "3.4.4"
osmar "3.4.4"
osrm "3.4.4"
pbkrtest "3.4.4"
pillar "3.4.4"
pkgconfig "3.4.4"
plogr "3.4.4"
plyr "3.4.4"
png "3.4.4"
polyclip "3.4.4"
prettyunits "3.4.4"
processx "3.4.4"
progress "3.4.4"
promises "3.4.4"
ps "3.4.4"
purrr "3.4.4"
quantreg "3.4.4"
R.methodsS3 "3.4.4"
R.oo "3.4.4"
R.utils "3.4.4"
R6 "3.4.4"
raster "3.4.4"
rbgm "3.4.4"
rCarto "3.4.4"
RColorBrewer "3.4.4"
Rcpp "3.4.4"
RcppArmadillo "3.4.4"
RcppEigen "3.4.4"
RcppParallel "3.4.4"
RCurl "3.4.4"
Rdpack "3.4.4"
readr "3.4.4"
readxl "3.4.4"
rematch "3.4.4"
reshape2 "3.4.4"
reticulate "3.4.4"
rgdal "3.4.4"
rgeos "3.4.4"
rgexf "3.4.4"
RGraphics "3.4.4"
Rgraphviz "3.4.4"
rio "3.4.4"
rlang "3.4.4"
rmarkdown "3.4.4"
Rook "3.4.4"
rprojroot "3.4.4"
RQDA "3.4.4"
RSpectra "3.4.4"
RSQLite "3.4.4"
rstudioapi "3.4.4"
Rttf2pt1 "3.4.4"
rtweet "3.4.4"
scales "3.4.4"
shiny "3.4.4"
simmer "3.4.4"
simmer.plot "3.4.4"
SnowballC "3.4.4"
sourcetools "3.4.4"
sp "3.4.4"
spacyr "3.4.4"
SparseM "3.4.4"
statmod "3.4.4"
stopwords "3.4.4"
stringi "3.4.4"
stringr "3.4.4"
sys "3.4.4"
tibble "3.4.4"
tidyr "3.4.4"
tidyselect "3.4.4"
tidytext "3.4.4"
timevis "3.4.4"
tinytex "3.4.4"
tm "3.4.4"
tokenizers "3.4.4"
triebeard "3.4.4"
tweenr "3.4.4"
urltools "3.4.4"
utf8 "3.4.4"
viridis "3.4.4"
viridisLite "3.4.4"
visNetwork "3.4.4"
webshot "3.4.4"
widyr "3.4.4"
withr "3.4.4"
wordcloud "3.4.4"
xfun "3.4.4"
XML "3.4.4"
xtable "3.4.4"
yaml "3.4.4"
zip "3.4.4"
zoo "3.4.4"
assertthat "3.4.2"
base64enc "3.4.2"
bindr "3.4.2"
bindrcpp "3.4.2"
broom "3.4.3"
cairoDevice "3.4.2"
cli "3.4.3"
colorspace "3.4.2"
crayon "3.4.2"
crosstalk "3.4.3"
curl "3.4.3"
data.table "3.4.2"
DBI "3.4.2"
dbplyr "3.4.3"
dichromat "3.4.2"
digest "3.4.3"
dplyr "3.4.3"
ggplot2 "3.4.2"
glue "3.4.2"
gtable "3.4.2"
hexbin "3.4.2"
htmltools "3.4.2"
htmlwidgets "3.4.3"
httpuv "3.4.2"
httr "3.4.2"
igraph "3.4.2"
irlba "3.4.3"
jsonlite "3.4.2"
labeling "3.4.2"
lazyeval "3.4.2"
littler "3.4.3"
magrittr "3.4.2"
mime "3.4.2"
miniUI "3.4.2"
mnormt "3.4.2"
munsell "3.4.2"
NLP "3.4.2"
openssl "3.4.3"
pillar "3.4.3"
pkgconfig "3.4.2"
pkgKitten "3.4.2"
plotly "3.4.3"
plyr "3.4.2"
psych "3.4.3"
purrr "3.4.3"
R6 "3.4.2"
RColorBrewer "3.4.2"
Rcpp "3.4.3"
reshape2 "3.4.2"
RGtk2 "3.4.3"
rjson "3.4.2"
rlang "3.4.3"
scales "3.4.2"
shiny "3.4.3"
shinyjs "3.4.2"
slam "3.4.3"
sourcetools "3.4.2"
stringi "3.4.3"
stringr "3.4.3"
tibble "3.4.3"
tidyr "3.4.3"
tidyselect "3.4.3"
tm "3.4.2"
utf8 "3.4.3"
viridisLite "3.4.3"
xml2 "3.4.3"
xtable "3.4.2"
yaml "3.4.2"
base "3.4.4"
boot "3.4.2"
class "3.4.2"
cluster "3.4.2"
codetools "3.4.2"
compiler "3.4.4"
datasets "3.4.4"
foreign "3.4.2"
graphics "3.4.4"
grDevices "3.4.4"
grid "3.4.4"
KernSmooth "3.4.2"
lattice "3.4.2"
MASS "3.4.3"
Matrix "3.4.2"
methods "3.4.4"
mgcv "3.4.3"
nlme "3.4.2"
nnet "3.4.2"
parallel "3.4.4"
rpart "3.4.3"
spatial "3.4.2"
splines "3.4.4"
stats "3.4.4"
stats4 "3.4.4"
survival "3.4.2"
tcltk "3.4.4"
tools "3.4.4"
utils "3.4.4"
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
help(package = "alluvial")
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.
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")))
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
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.
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)
}
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.01 | 0.10 | -0.07 | 0.95 |
w | 1.95 | 0.09 | 21.12 | 0.00 |
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 |
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 |
Distrib. | Comandos |
---|---|
Uniform | punif qunif dunif runif |
Weibull | pweibull qweibull dweibull rweibull |
Wilcox Rank | pwilcox qwilcox dwilcox rwilcox |
WilcoxSigned | psignrank qsignrank dsignrank rsignrank |
library(timevis)
data <- data.frame(
id = 1:4,
content = c("Item one", "Item two",
"Ranged item", "Item four"),
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)
)
Error in file(con, "rb") : no se puede abrir la conexión