Publications by David Dominguez - A01570975

Evidence 1 : Nearshoring in México

02.09.2023

Mexico and Its Attractiveness for Nearshoring Introduction In a rapidly changing global environment marked by trade wars, geopolitical tensions, and health crises such as the COVID-19 pandemic, countries and businesses are re-evaluating their supply chain strategies. One such strategy gaining traction is ‘nearshoring’. Mexico, with its proximi...

41838 sym R (36889 sym/118 pcs) 12 img

Tesla in Mexico: Why Nuevo León?

26.08.2023

Introduction Tesla, one of the leading companies in the production of electric vehicles, has expressed interest in expanding its presence in Mexico by building an automotive plant in the state of Nuevo León. In this sense, it is crucial to identify the municipality that offers the most favorable conditions for the installation of this plant, consi...

2020 sym R (4315 sym/23 pcs)

Assignment 2 - Econometrics

26.08.2023

Calling Libraries First, let’s call the libraries needed # Required libraries library(ggplot2) library(corrplot) ## corrplot 0.92 loaded library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.2 ✔ readr 2.1.4 ## �...

1170 sym R (11333 sym/61 pcs) 6 img

Comandos Básicos

12.09.2022

Asignacion de variables x <- 3 y <- 2 Impresion de Resultados x ## [1] 3 y ## [1] 2 Operaciones Artimeticas 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 ## [1] 1 potencia <- x^y pot...

486 sym 1 img

Arca Continental

19.09.2022

Definir base de datos base_de_datos <- read.csv("/Users/daviddrums180/Desktop/Datos Arca Continental Original.csv") Instalar programas requeridos #install.packages("dplyr") library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'pa...

1356 sym R (1321909 sym/86 pcs) 3 img

Buscador de Tendencias

19.09.2022

Este analisis tiene como propósito entrar a profundidad dentro de las capacidades de R en los aspectos de análisis de datos. En este caso se evalua a profundidad la capacidad de buscar terminos en bases de datos de buscadores (web, youtube, images, news), esto en el caso de el termino “cirugia bariatrica” en méxico dentro de la web. Insta...

1006 sym R (680 sym/8 pcs) 2 img

Cancer Mama

19.09.2022

#### Este analisis tiene como propósito entrar a profundidad dentro de las capacidades de R en los aspectos de análisis de datos. En este caso se evalua a profundidad la capacidad de diseñar un arbol de toma de decisiones que muestre las probabilidades a un efecto segun criterios determinados, esto en el caso de la posibilidad de ser diagnosti...

1272 sym R (5455 sym/9 pcs) 3 img

Crear Market Basket

19.09.2022

# Market Basket Analysis Definir base de datos df_limpia<-read.csv("/Users/daviddrums180/Documents/abarrotes_df_limpia.csv") Instalar programas requeridos library(plyr) library(Matrix) library(arules) ## ## Attaching package: 'arules' ## The following objects are masked from 'package:base': ## ## abbreviate, write library(arulesViz) libr...

556 sym R (26760 sym/29 pcs) 1 img

Analisis ASOS

19.09.2022

# Instalar programas requeridos library(riem) library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.2.1 ...

260 sym R (3673 sym/12 pcs) 2 img

Titanic

19.09.2022

Instalar programas requeridos #install.packages("rpart") #install.packages("rpart.plot") library(rpart) library(rpart.plot) Importar base de datos df<-read.csv("/Users/daviddrums180/Downloads/titanic.csv") Preparación de Base de Datos Entender la base de datos summary(df) ## pclass survived name sex ...

257 sym R (3715 sym/13 pcs) 2 img