You are on page 1of 13

Librerías Estadística

USUARIO

Tue Sep 12 10:36:29 2017


#librerias estadistica
library(sqldf) # Para cargar datos desde una base de datos

# y poder realizar consultas."""


library(foreign) #"""Permite la carga de datos de software externo
# como SAS o SPSS de forma directa."""
library(plyr) # """Fundamental para agregación de datos y aplicació
n de funciones por grupos.
# Este paquete es de los más utilizados y contiene
# algunas funciones como ddply, daply, dlply, adply, ldply
# para aplicación de funciones que son indispensables."""
library(lubridate)#"""Contiene todas las funciones que se pueden aplic
ar sobre datos

# en formato fecha y se utilizan de forma sencillísima.


# Manejar fechas sin este paquete es toda una odisea."""
library(reshape2)# """La transformación de los datos en un formato ade
cuado suele
# llevar mucho tiempo en un proyecto. Este paquete permite realizar
# algunas trasformaciones de un modo bastante sencillo."""
library(stringr) #""" Las funciones de R básicas sobre cadenas pueden
resultar incómodas.
# Las cadenas de texto serán mucho más fáciles de manejar con este
paquete."""
library(ggplot2) # """Mejora las funciones habituales de R para gráfic
os pudiendo
# incluir más capas y especificaciones.
# Hay diferentes libros de gran utilidad para este paquete."""
library(rgl) # """Gráficos interactivos en 3D. Se pueden represent
ar incluso formas geométricas en 3D."""
library(caret) # """Incluye sencillas herramientas para analizar la
calidad de los datos,

# selección de características y construcción de modelos predictivos


.
# Los resultados que proporciona son especialmente completos."""
library(car) # """Entre otros beneficios permite realizar ANOVA ti
po II y tipo III."""
library(randomForest)#""" Este método de machine learning puede ser ut
ilizado para el

# aprendizaje tanto supervisado como no supervisado.


# Es bastante popular por su sencillez y buenos resultados."""
library(qcc) #"""Paquete Para el control estadístico de calidad.
Ofrece funciones fáciles de utilizar y
# gráficos muy intuitivos para observar procesos bajo control y suceso
s que están fuera de control."""
library(zoo)

library(forecast)# """Realizan el formateo de datos y creación de mode


los de predicción para series temporales."""
library(shiny) # """Muestra los resultados mediante gráficos interac
tivos
# que se pueden publicar en cualquier web."""
library(knitr) # """Permite elaborar informes en formato Markdown (p
or ejemplo en HTML)."""
library(xtable) # """ Para exportar tablas desde dataframes a HTML o
Latex en un simple paso."""

> install.packages("shiny")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘Rcpp’, ‘httpuv’, ‘mime’, ‘jsonlite’,
‘xtable’, ‘digest’, ‘htmltools’, ‘R6’, ‘sourcetools’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/Rcpp_0.12


.12.zip'
Content type 'application/zip' length 3319198 bytes (3.2 MB)
downloaded 3.2 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/httpuv_1.


3.5.zip'
Content type 'application/zip' length 932576 bytes (910 KB)
downloaded 910 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/mime_0.5.


zip'
Content type 'application/zip' length 38061 bytes (37 KB)
downloaded 37 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/jsonlite_


1.5.zip'
Content type 'application/zip' length 1159913 bytes (1.1 MB)
downloaded 1.1 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/xtable_1.


8-2.zip'
Content type 'application/zip' length 710367 bytes (693 KB)
downloaded 693 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/digest_0.


6.12.zip'
Content type 'application/zip' length 172987 bytes (168 KB)
downloaded 168 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/htmltools


_0.3.6.zip'
Content type 'application/zip' length 618382 bytes (603 KB)
downloaded 603 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/R6_2.2.2.


zip'
Content type 'application/zip' length 316766 bytes (309 KB)
downloaded 309 KB
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/sourcetoo
ls_0.1.6.zip'
Content type 'application/zip' length 528083 bytes (515 KB)
downloaded 515 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/shiny_1.0


.5.zip'
Content type 'application/zip' length 2834205 bytes (2.7 MB)
downloaded 2.7 MB

package ‘Rcpp’ successfully unpacked and MD5 sums checked


package ‘httpuv’ successfully unpacked and MD5 sums checked
package ‘mime’ successfully unpacked and MD5 sums checked
package ‘jsonlite’ successfully unpacked and MD5 sums checked
package ‘xtable’ successfully unpacked and MD5 sums checked
package ‘digest’ successfully unpacked and MD5 sums checked
package ‘htmltools’ successfully unpacked and MD5 sums checked
package ‘R6’ successfully unpacked and MD5 sums checked
package ‘sourcetools’ successfully unpacked and MD5 sums checked
package ‘shiny’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> shiny::absolutePanel(x)
<div style="position:absolute;cursor:inherit;">-1.17530262946731</div>
Warning message:
In charToRaw(enc2utf8(text)) :
argument should be a character vector of length 1
all but the first element will be ignored
> library(shiny)
> 11**12
[1] 3.138428e+12
> x <- rnorm(30)
> print (summary(x))
Min. 1st Qu. Median Mean 3rd Qu. Max.
-2.0599 -0.9505 -0.3351 -0.3466 0.2159 1.6828
> install.packages("sqldf")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘rlang’, ‘bit’, ‘tibble’, ‘bit64’, ‘b
lob’, ‘memoise’, ‘pkgconfig’, ‘BH’, ‘plogr’, ‘gsubfn’, ‘proto’, ‘RSQLi
te’, ‘DBI’, ‘chron’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/rlang_0.1


.2.zip'
Content type 'application/zip' length 465964 bytes (455 KB)
downloaded 455 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/bit_1.1-1


2.zip'
Content type 'application/zip' length 240302 bytes (234 KB)
downloaded 234 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/tibble_1.


3.4.zip'
Content type 'application/zip' length 676596 bytes (660 KB)
downloaded 660 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/bit64_0.9


-7.zip'
Content type 'application/zip' length 548391 bytes (535 KB)
downloaded 535 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/blob_1.1.


0.zip'
Content type 'application/zip' length 14948 bytes (14 KB)
downloaded 14 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/memoise_1


.1.0.zip'
Content type 'application/zip' length 29812 bytes (29 KB)
downloaded 29 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/pkgconfig


_2.0.1.zip'
Content type 'application/zip' length 20040 bytes (19 KB)
downloaded 19 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/BH_1.65.0


-1.zip'
Content type 'application/zip' length 17006683 bytes (16.2 MB)
downloaded 16.2 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/plogr_0.1


-1.zip'
Content type 'application/zip' length 17918 bytes (17 KB)
downloaded 17 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/gsubfn_0.


6-6.zip'
Content type 'application/zip' length 355018 bytes (346 KB)
downloaded 346 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/proto_1.0


.0.zip'
Content type 'application/zip' length 466907 bytes (455 KB)
downloaded 455 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/RSQLite_2


.0.zip'
Content type 'application/zip' length 2079134 bytes (2.0 MB)
downloaded 2.0 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/DBI_0.7.z


ip'
Content type 'application/zip' length 749286 bytes (731 KB)
downloaded 731 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/chron_2.3


-50.zip'
Content type 'application/zip' length 110240 bytes (107 KB)
downloaded 107 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/sqldf_0.4


-11.zip'
Content type 'application/zip' length 77849 bytes (76 KB)
downloaded 76 KB

package ‘rlang’ successfully unpacked and MD5 sums checked


package ‘bit’ successfully unpacked and MD5 sums checked
package ‘tibble’ successfully unpacked and MD5 sums checked
package ‘bit64’ successfully unpacked and MD5 sums checked
package ‘blob’ successfully unpacked and MD5 sums checked
package ‘memoise’ successfully unpacked and MD5 sums checked
package ‘pkgconfig’ successfully unpacked and MD5 sums checked
package ‘BH’ successfully unpacked and MD5 sums checked
package ‘plogr’ successfully unpacked and MD5 sums checked
package ‘gsubfn’ successfully unpacked and MD5 sums checked
package ‘proto’ successfully unpacked and MD5 sums checked
package ‘RSQLite’ successfully unpacked and MD5 sums checked
package ‘DBI’ successfully unpacked and MD5 sums checked
package ‘chron’ successfully unpacked and MD5 sums checked
package ‘sqldf’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("foreign")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/foreign_0
.8-69.zip'
Content type 'application/zip' length 324834 bytes (317 KB)
downloaded 317 KB

package ‘foreign’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("plyr")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/plyr_1.8.
4.zip'
Content type 'application/zip' length 1220247 bytes (1.2 MB)
downloaded 1.2 MB

package ‘plyr’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("lubridate")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/lubridate
_1.6.0.zip'
Content type 'application/zip' length 665998 bytes (650 KB)
downloaded 650 KB

package ‘lubridate’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("reshape2")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/reshape2_
1.4.2.zip'
Content type 'application/zip' length 609756 bytes (595 KB)
downloaded 595 KB
package ‘reshape2’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("stringr")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/stringr_1
.2.0.zip'
Content type 'application/zip' length 149024 bytes (145 KB)
downloaded 145 KB

package ‘stringr’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("ggplot2")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘colorspace’, ‘RColorBrewer’, ‘dichro
mat’, ‘munsell’, ‘labeling’, ‘viridisLite’, ‘gtable’, ‘scales’, ‘lazye
val’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/colorspac


e_1.3-2.zip'
Content type 'application/zip' length 446946 bytes (436 KB)
downloaded 436 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/RColorBre


wer_1.1-2.zip'
Content type 'application/zip' length 26979 bytes (26 KB)
downloaded 26 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/dichromat


_2.0-0.zip'
Content type 'application/zip' length 147934 bytes (144 KB)
downloaded 144 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/munsell_0


.4.3.zip'
Content type 'application/zip' length 134713 bytes (131 KB)
downloaded 131 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/labeling_


0.3.zip'
Content type 'application/zip' length 41095 bytes (40 KB)
downloaded 40 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/viridisLi


te_0.2.0.zip'
Content type 'application/zip' length 57868 bytes (56 KB)
downloaded 56 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/gtable_0.


2.0.zip'
Content type 'application/zip' length 57987 bytes (56 KB)
downloaded 56 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/scales_0.


5.0.zip'
Content type 'application/zip' length 695438 bytes (679 KB)
downloaded 679 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/lazyeval_


0.2.0.zip'
Content type 'application/zip' length 139821 bytes (136 KB)
downloaded 136 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/ggplot2_2


.2.1.zip'
Content type 'application/zip' length 2784573 bytes (2.7 MB)
downloaded 2.7 MB

package ‘colorspace’ successfully unpacked and MD5 sums checked


package ‘RColorBrewer’ successfully unpacked and MD5 sums checked
package ‘dichromat’ successfully unpacked and MD5 sums checked
package ‘munsell’ successfully unpacked and MD5 sums checked
package ‘labeling’ successfully unpacked and MD5 sums checked
package ‘viridisLite’ successfully unpacked and MD5 sums checked
package ‘gtable’ successfully unpacked and MD5 sums checked
package ‘scales’ successfully unpacked and MD5 sums checked
package ‘lazyeval’ successfully unpacked and MD5 sums checked
package ‘ggplot2’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("rgl")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependency ‘htmlwidgets’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/htmlwidge


ts_0.9.zip'
Content type 'application/zip' length 851916 bytes (831 KB)
downloaded 831 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/rgl_0.98.


1.zip'
Content type 'application/zip' length 3436915 bytes (3.3 MB)
downloaded 3.3 MB

package ‘htmlwidgets’ successfully unpacked and MD5 sums checked


package ‘rgl’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("caret")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘numDeriv’, ‘bindr’, ‘lava’, ‘kernlab
’, ‘CVST’, ‘DEoptimR’, ‘assertthat’, ‘bindrcpp’, ‘glue’, ‘prodlim’, ‘D
RR’, ‘robustbase’, ‘iterators’, ‘dplyr’, ‘ipred’, ‘dimRed’, ‘timeDate’
, ‘ddalpha’, ‘purrr’, ‘gower’, ‘RcppRoll’, ‘tidyselect’, ‘foreach’, ‘M
odelMetrics’, ‘recipes’, ‘withr’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/numDeriv_


2016.8-1.zip'
Content type 'application/zip' length 115375 bytes (112 KB)
downloaded 112 KB
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/bindr_0.1
.zip'
Content type 'application/zip' length 14982 bytes (14 KB)
downloaded 14 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/lava_1.5.


zip'
Content type 'application/zip' length 2066653 bytes (2.0 MB)
downloaded 2.0 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/kernlab_0


.9-25.zip'
Content type 'application/zip' length 2218659 bytes (2.1 MB)
downloaded 2.1 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/CVST_0.2-


1.zip'
Content type 'application/zip' length 53972 bytes (52 KB)
downloaded 52 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/DEoptimR_


1.0-8.zip'
Content type 'application/zip' length 41956 bytes (40 KB)
downloaded 40 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/asserttha


t_0.2.0.zip'
Content type 'application/zip' length 44017 bytes (42 KB)
downloaded 42 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/bindrcpp_


0.2.zip'
Content type 'application/zip' length 637434 bytes (622 KB)
downloaded 622 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/glue_1.1.


1.zip'
Content type 'application/zip' length 41756 bytes (40 KB)
downloaded 40 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/prodlim_1


.6.1.zip'
Content type 'application/zip' length 235900 bytes (230 KB)
downloaded 230 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/DRR_0.0.2


.zip'
Content type 'application/zip' length 136642 bytes (133 KB)
downloaded 133 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/robustbas


e_0.92-7.zip'
Content type 'application/zip' length 3359418 bytes (3.2 MB)
downloaded 3.2 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/iterators


_1.0.8.zip'
Content type 'application/zip' length 320195 bytes (312 KB)
downloaded 312 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/dplyr_0.7


.3.zip'
Content type 'application/zip' length 2888277 bytes (2.8 MB)
downloaded 2.8 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/ipred_0.9


-6.zip'
Content type 'application/zip' length 298316 bytes (291 KB)
downloaded 291 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/dimRed_0.


1.0.zip'
Content type 'application/zip' length 332494 bytes (324 KB)
downloaded 324 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/timeDate_


3012.100.zip'
Content type 'application/zip' length 809194 bytes (790 KB)
downloaded 790 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/ddalpha_1


.2.1.zip'
Content type 'application/zip' length 1452878 bytes (1.4 MB)
downloaded 1.4 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/purrr_0.2


.3.zip'
Content type 'application/zip' length 242977 bytes (237 KB)
downloaded 237 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/gower_0.1


.2.zip'
Content type 'application/zip' length 122779 bytes (119 KB)
downloaded 119 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/RcppRoll_


0.2.2.zip'
Content type 'application/zip' length 635099 bytes (620 KB)
downloaded 620 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/tidyselec


t_0.2.0.zip'
Content type 'application/zip' length 619735 bytes (605 KB)
downloaded 605 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/foreach_1


.4.3.zip'
Content type 'application/zip' length 389818 bytes (380 KB)
downloaded 380 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/ModelMetr


ics_1.1.0.zip'
Content type 'application/zip' length 594766 bytes (580 KB)
downloaded 580 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/recipes_0


.1.0.zip'
Content type 'application/zip' length 824276 bytes (804 KB)
downloaded 804 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/withr_2.0


.0.zip'
Content type 'application/zip' length 59555 bytes (58 KB)
downloaded 58 KB
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/caret_6.0
-77.zip'
Content type 'application/zip' length 5097597 bytes (4.9 MB)
downloaded 4.9 MB

package ‘numDeriv’ successfully unpacked and MD5 sums checked


package ‘bindr’ successfully unpacked and MD5 sums checked
package ‘lava’ successfully unpacked and MD5 sums checked
package ‘kernlab’ successfully unpacked and MD5 sums checked
package ‘CVST’ successfully unpacked and MD5 sums checked
package ‘DEoptimR’ successfully unpacked and MD5 sums checked
package ‘assertthat’ successfully unpacked and MD5 sums checked
package ‘bindrcpp’ successfully unpacked and MD5 sums checked
package ‘glue’ successfully unpacked and MD5 sums checked
package ‘prodlim’ successfully unpacked and MD5 sums checked
package ‘DRR’ successfully unpacked and MD5 sums checked
package ‘robustbase’ successfully unpacked and MD5 sums checked
package ‘iterators’ successfully unpacked and MD5 sums checked
package ‘dplyr’ successfully unpacked and MD5 sums checked
package ‘ipred’ successfully unpacked and MD5 sums checked
package ‘dimRed’ successfully unpacked and MD5 sums checked
package ‘timeDate’ successfully unpacked and MD5 sums checked
package ‘ddalpha’ successfully unpacked and MD5 sums checked
package ‘purrr’ successfully unpacked and MD5 sums checked
package ‘gower’ successfully unpacked and MD5 sums checked
package ‘RcppRoll’ successfully unpacked and MD5 sums checked
package ‘tidyselect’ successfully unpacked and MD5 sums checked
package ‘foreach’ successfully unpacked and MD5 sums checked
package ‘ModelMetrics’ successfully unpacked and MD5 sums checked
package ‘recipes’ successfully unpacked and MD5 sums checked
package ‘withr’ successfully unpacked and MD5 sums checked
package ‘caret’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("car")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘minqa’, ‘nloptr’, ‘RcppEigen’, ‘lme4
’, ‘SparseM’, ‘MatrixModels’, ‘pbkrtest’, ‘quantreg’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/minqa_1.2


.4.zip'
Content type 'application/zip' length 667915 bytes (652 KB)
downloaded 652 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/nloptr_1.


0.4.zip'
Content type 'application/zip' length 1173290 bytes (1.1 MB)
downloaded 1.1 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/RcppEigen


_0.3.3.3.0.zip'
Content type 'application/zip' length 2667465 bytes (2.5 MB)
downloaded 2.5 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/lme4_1.1-


13.zip'
Content type 'application/zip' length 4733579 bytes (4.5 MB)
downloaded 4.5 MB
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/SparseM_1
.77.zip'
Content type 'application/zip' length 968526 bytes (945 KB)
downloaded 945 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/MatrixMod


els_0.4-1.zip'
Content type 'application/zip' length 202975 bytes (198 KB)
downloaded 198 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/pbkrtest_


0.4-7.zip'
Content type 'application/zip' length 196227 bytes (191 KB)
downloaded 191 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/quantreg_


5.33.zip'
Content type 'application/zip' length 2106207 bytes (2.0 MB)
downloaded 2.0 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/car_2.1-5


.zip'
Content type 'application/zip' length 1598044 bytes (1.5 MB)
downloaded 1.5 MB

package ‘minqa’ successfully unpacked and MD5 sums checked


package ‘nloptr’ successfully unpacked and MD5 sums checked
package ‘RcppEigen’ successfully unpacked and MD5 sums checked
package ‘lme4’ successfully unpacked and MD5 sums checked
package ‘SparseM’ successfully unpacked and MD5 sums checked
package ‘MatrixModels’ successfully unpacked and MD5 sums checked
package ‘pbkrtest’ successfully unpacked and MD5 sums checked
package ‘quantreg’ successfully unpacked and MD5 sums checked
package ‘car’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("randomForest")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/randomFor
est_4.6-12.zip'
Content type 'application/zip' length 179229 bytes (175 KB)
downloaded 175 KB

package ‘randomForest’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("qcc")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/qcc_2.7.z
ip'
Content type 'application/zip' length 3555330 bytes (3.4 MB)
downloaded 3.4 MB

package ‘qcc’ successfully unpacked and MD5 sums checked


The downloaded binary packages are in
C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("zoo")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/zoo_1.8-0
.zip'
Content type 'application/zip' length 902586 bytes (881 KB)
downloaded 881 KB

package ‘zoo’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages
> install.packages("forecast")
Installing package into ‘C:/Users/USUARIO/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
also installing the dependencies ‘xts’, ‘TTR’, ‘curl’, ‘quadprog’, ‘qu
antmod’, ‘tseries’, ‘fracdiff’, ‘lmtest’, ‘RcppArmadillo’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/xts_0.10-


0.zip'
Content type 'application/zip' length 732098 bytes (714 KB)
downloaded 714 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/TTR_0.23-


2.zip'
Content type 'application/zip' length 444160 bytes (433 KB)
downloaded 433 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/curl_2.8.


1.zip'
Content type 'application/zip' length 2888414 bytes (2.8 MB)
downloaded 2.8 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/quadprog_


1.5-5.zip'
Content type 'application/zip' length 53278 bytes (52 KB)
downloaded 52 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/quantmod_


0.4-10.zip'
Content type 'application/zip' length 479294 bytes (468 KB)
downloaded 468 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/tseries_0


.10-42.zip'
Content type 'application/zip' length 327518 bytes (319 KB)
downloaded 319 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/fracdiff_


1.4-2.zip'
Content type 'application/zip' length 107803 bytes (105 KB)
downloaded 105 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/lmtest_0.


9-35.zip'
Content type 'application/zip' length 289168 bytes (282 KB)
downloaded 282 KB
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/RcppArmad
illo_0.7.960.1.2.zip'
Content type 'application/zip' length 2024154 bytes (1.9 MB)
downloaded 1.9 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.4/forecast_


8.1.zip'
Content type 'application/zip' length 2221210 bytes (2.1 MB)
downloaded 2.1 MB

package ‘xts’ successfully unpacked and MD5 sums checked


package ‘TTR’ successfully unpacked and MD5 sums checked
package ‘curl’ successfully unpacked and MD5 sums checked
package ‘quadprog’ successfully unpacked and MD5 sums checked
package ‘quantmod’ successfully unpacked and MD5 sums checked
package ‘tseries’ successfully unpacked and MD5 sums checked
package ‘fracdiff’ successfully unpacked and MD5 sums checked
package ‘lmtest’ successfully unpacked and MD5 sums checked
package ‘RcppArmadillo’ successfully unpacked and MD5 sums checked
package ‘forecast’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in


C:\Users\USUARIO\AppData\Local\Temp\RtmpUZaVyQ\downloaded_pack
ages

You might also like