Publications by Raúl Alejandro Cantú Vázquez A01087683

Document

22.03.2023

Importar la base de datos # file.choose() bd <- read.csv("C:\\Users\\L03530621\\Desktop\\arca.csv") Limpiar la base de datos bd$Cliente <- as.integer(bd$Cliente) ## Warning: NAs introduced by coercion bd$Enero <- as.integer(bd$Enero) ## Warning: NAs introduced by coercion bd$Febrero <- as.integer(bd$Febrero) ## Warning: NAs introduced by coercion...

2120 sym R (1244 sym/31 pcs) 2 img

Document

22.03.2023

Importar la base de datos # file.choose() bd <- read.csv("C:\\Users\\L03530621\\Desktop\\arca.csv") Limpiar la base de datos bd$Cliente <- as.integer(bd$Cliente) ## Warning: NAs introduced by coercion bd$Enero <- as.integer(bd$Enero) ## Warning: NAs introduced by coercion bd$Febrero <- as.integer(bd$Febrero) ## Warning: NAs introduced by coercion...

2988 sym R (19223 sym/44 pcs) 5 img

Actividad Individual 2

21.03.2023

Contexto Para Arca Continental su principal canal de distribución es el canal tradicional, es decir, las tienditas de la esquina. Esto permite que la familia de productos de la compañía Coca Cola estén siempre cerca de sus consumidores a través de estas pequeñas empresas familiares que forman parte de su propia comunidad. Sin embargo, est...

5691 sym R (25163 sym/63 pcs) 3 img

Comandos Básicos

21.03.2023

Asignación de Variables x <- 2 y <- 3 Impresión de Resultados x ## [1] 2 y ## [1] 3 Operaciones Aritméticas suma <- x+y suma ## [1] 5 division <- x/y division ## [1] 0.6666667 Funciones matemáticas raiz_cuadrada <- sqrt(x) raiz_cuadrada ## [1] 1.414214 z <- -3 z ## [1] -3 absoluto <- abs(z) absoluto ## [1] 3 signo <- sign(z) signo ## ...

2333 sym 2 img

Document

14.02.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

598 sym 1 img

Document

13.02.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

598 sym 1 img

Document

13.01.2023

Professor: Dohyeong Kim, Ph.D Project Overview One of the most important consequences of COVID-19 pandemic is that world wide manufacturers are now more interested in nearshoring than ever before. In the past year, Mexico reach an historical foreing direct investment (FDI), where the manufacturing sector represented almost half of the total....

25530 sym R (76974 sym/319 pcs) 38 img 1 tbl

Document

05.09.2022

Símbolos ^ ~ Asignación de Variables x <- 3 y <- 2 Impresión de Resultados x ## [1] 3 y ## [1] 2 Operaciones Aritméticas suma <- x+y suma ## [1] 5 resta <- x-y resta ## [1] 1 multiplicacion <- x*y multiplicacion ## [1] 6 division <- x/y division ## [1] 1.5 division_entera <- x%/%y division_entera ## [1] 1 residuo <- x%%y residuo ##...

1140 sym 2 img

Document

11.09.2022

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks with...

598 sym 1 img

Walmartt

11.09.2022

# Importar bases de datos # file.choose() stores <- read.csv("C:\\Users\\raulc\\OneDrive\\Escritorio\\stores.csv") features <- read.csv("C:\\Users\\raulc\\OneDrive\\Escritorio\\features.csv") train <- read.csv("C:\\Users\\raulc\\OneDrive\\Escritorio\\train.csv") test <- read.csv("C:\\Users\\raulc\\OneDrive\\Escritorio\\test.csv") # Instal...

51 sym R (17854 sym/46 pcs) 2 img