Publications by Josué Nahum Amaya Flores AF16010

Ejercicio práctico EDD 2023 AF16010

18.05.2023

DESCRIPCION DE EJERCICIO #Para la economía de los primigenios, en la ciudad de R'lyeh, el vector de rentas es (100,200,300,400,700), (en unidades monetarias: u.m.) el cual es ponderado por el siguiente vector de población (50,35,55,35,10) (en individuos) #a) Calcule el coeficiente de Gini de la ciudad de R'lyeh #b) El alcalde de R'lyeh el "...

13154 sym R (9391 sym/20 pcs)

MCO

10.04.2021

generando matriz X’X options(scipen = 9999999) matriz_xx<-matrix(data = c(25,4586,2018, 4586,1030398,364545, 2018,364545,204312),nrow = 3,ncol = 3, byrow = TRUE) print(matriz_xx) ## [,1] [,2] [,3] ## [1,] 25 4586 2018 ## [2,] 4586 1030398 364545 ##...

140 sym R (939 sym/8 pcs)

Producto de Matrices

21.03.2021

Creacion de Matrices #Creacion de la Matriz Y matriz_y<-matrix(data = c(30,20,36,24,40),nrow = 5,ncol = 1,byrow = TRUE) colnames(matriz_y)<-c("y") rownames(matriz_y)<-c("a","b","c","d","e") print(matriz_y) ## y ## a 30 ## b 20 ## c 36 ## d 24 ## e 40 Creación de matriz x matriz_x<-cbind(rep(1,5), matrix(data= c(4,10...

141 sym R (911 sym/8 pcs)

AF16010_Practica01

18.03.2021

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 t...

594 sym R (268 sym/2 pcs) 1 img

Ejercicio2_Guia1

16.04.2021

Literal 1 ejercicio 2 options(scipen = 999999) load("C:/Users/josue/OneDrive/Escritorio/UES/2021/ECONOMETRIA/GUIA 1/datos_cajas.RData") modelo_cajas<-lm(formula = Tiempo ~ Distancia+N_cajas, data = datos_cajas) summary(modelo_cajas) ## ## Call: ## lm(formula = Tiempo ~ Distancia + N_cajas, data = datos_cajas) ## ## Resi...

110 sym R (10160 sym/14 pcs)

GUIA_1

18.04.2021

Ejercicio 1 numeral 1 options(scipen = 999999) load("C:/Users/Johanita Castillo/Downloads/modelo_ventas.RData") matriz_x<-model.matrix(modelo_ventas) matriz_xx<-t(matriz_x)%*%matriz_x #Matriz_A matriz_A<-solve(matriz_xx)%*%t(matriz_x) print(matriz_A) ## 1 2 3 4 ## (Intercept...

617 sym R (1389265 sym/57 pcs)

Econometria_GUIA#1

18.04.2021

Ejercicio 1 numeral 1 options(scipen = 999999) load("C:/Users/Johanita Castillo/Downloads/modelo_ventas.RData") matriz_x<-model.matrix(modelo_ventas) matriz_xx<-t(matriz_x)%*%matriz_x #Matriz_A matriz_A<-solve(matriz_xx)%*%t(matriz_x) print(matriz_A) ## 1 2 3 4 ## (Intercept...

617 sym R (1387605 sym/55 pcs) 2 tbl

Trabajo prueba

13.06.2021

PARTE 1: MARCO TEORICO Y REFERNCIAL Crecimiento Económico El concepto de crecimiento económico describe el incremento sostenido en el tiempo del producto real, dicho aumento es causado por factores como tipo y cantidad de fuerza de trabajo, capital físico, consumo, inversión, tecnología y volumen de comercio internacional entre los element...

437 sym R (9855 sym/10 pcs) 2 img

Trabajo Final Econometria 2021

09.07.2021

#Integrantes: Amaya Flores Josue Nahum AF16010 Canales López José Manuel CL12025 Flores Meléndez Jennifer Saraí FM19017 PARTE 1: MARCO TEORICO Y REFERNCIAL 1.1 Crecimiento Económico El concepto de crecimiento económico describe el incremento sostenido en el tiempo del producto real, dicho aumento es causado por factores como tipo y canti...

3854 sym R (25384 sym/67 pcs) 2 img 1 tbl

Indice Mensual de la Actividad Economica de El Salvador 2009-2021

02.07.2021

Descomposición de Series Temporales (Enfoque Tradicional) library(forecast) library(readxl) serie_IVAE <- read_excel("C:/Users/josue/Desktop/2021/UES/CICLO I/ECONOMETRIA/TAREAS UNIDAD 3/IVAE_SLV_C.xlsx",col_types = c("skip","numeric"),skip = 5) serie_IVAE.ts <- ts(data = serie_IVAE,start = c(2009, 1),frequency = 12) serie_IVAE.ts %>%autop...

606 sym R (2592 sym/11 pcs) 11 img