Publications by Linda Stephanie Cruz Ruiz CR19015
Guía de trabajo #1
GUIA DE TRABAJO 1. Ejercicio 1. Numeral 1. calcules las matrices A, P y M options(scipen = 9999999) load("C:/Users/Laptopuser/Desktop/Econometria/GUIA/modelo_ventas.RData") # Generando las matices A, P y M matriz_X1 <- model.matrix(modelo_ventas) matriz_xx1 <- t(matriz_X1)%*%matriz_X1 #Matriz A matriz_A1 <- solve(matriz_xx1)%*%t(matriz_X...
2440 sym R (1482971 sym/62 pcs)
Ejercicio de Normalidad, Linda Stephanie Cruz Ruiz,CR19015, GT03
##Generando eldataframe disponible en el paquete wooldridge library(wooldridge) data("hprice1") head(force(hprice1), n = 5) ## price assess bdrms lotsize sqrft colonial lprice lassess llotsize lsqrft ## 1 300 349.1 4 6126 2438 1 5.703783 5.855359 8.720297 7.798934 ## 2 370 351.5 3 9903 2076 1 5.91350...
720 sym R (2775 sym/12 pcs) 2 img
Ejercicio heterocedasticidad, CR19015, GT03
Datos a Utilizar library(wooldridge) data("hprice1") head(force(hprice1), n = 5) ## price assess bdrms lotsize sqrft colonial lprice lassess llotsize lsqrft ## 1 300 349.1 4 6126 2438 1 5.703783 5.855359 8.720297 7.798934 ## 2 370 351.5 3 9903 2076 1 5.913503 5.862210 9.200593 7.638198 ## 3 191 2...
371 sym R (3115 sym/8 pcs) 1 img 1 tbl
Ejemplo autocorrelacion, Linda Stephanie Cruz Ruiz, CR19015, GT03
Datos a Utilizar library(wooldridge) data("hprice1") head(force(hprice1), n = 5) ## price assess bdrms lotsize sqrft colonial lprice lassess llotsize lsqrft ## 1 300 349.1 4 6126 2438 1 5.703783 5.855359 8.720297 7.798934 ## 2 370 351.5 3 9903 2076 1 5.913503 5.862210 9.200593 7.638198 ## 3 191 2...
413 sym R (3681 sym/25 pcs)
Ejercicio Multicolinealidad, Linda Stephanie Cruz Ruiz, CR19015, GT03
Datos a utilizar library(wooldridge) data("hprice1") head(force(hprice1), n = 5) ## price assess bdrms lotsize sqrft colonial lprice lassess llotsize lsqrft ## 1 300 349.1 4 6126 2438 1 5.703783 5.855359 8.720297 7.798934 ## 2 370 351.5 3 9903 2076 1 5.913503 5.862210 9.200593 7.638198 ## 3 191 2...
675 sym R (4643 sym/23 pcs) 2 img
Ejercicio Multicolinealidad
Datos a utilizar library(wooldridge) data("hprice1") head(force(hprice1), n = 5) ## price assess bdrms lotsize sqrft colonial lprice lassess llotsize lsqrft ## 1 300 349.1 4 6126 2438 1 5.703783 5.855359 8.720297 7.798934 ## 2 370 351.5 3 9903 2076 1 5.913503 5.862210 9.200593 7.638198 ## 3 191 2...
675 sym R (4643 sym/23 pcs) 2 img
Descomposición de Series Temporales LINDA STEPHANIE CRUZ RUIZ, CR19015, GT03
library(readxl) library(forecast) serie.ivae <-read_excel("C:/Users/Laptopuser/Desktop/Econometria/Tareas C3/Linda Stephanie Cruz Ruiz - 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.t...
454 sym R (2881 sym/11 pcs) 11 img
ESTIMADORES HAC, Linda Stephanie Cruz Ruiz, CR19015, GT03
Estimacion del modelo options(scipen = 99999) library(foreign) datos_regresion <- read.dta("https://stats.idre.ucla.edu/stat/data/crime.dta") modelo_estimado<-lm(crime~poverty+single,data=datos_regresion) print(modelo_estimado) ## ## Call: ## lm(formula = crime ~ poverty + single, data = datos_regresion) ## ## Coefficients: ## (Interce...
152 sym R (3065 sym/12 pcs) 4 tbl
Pronostico y simulación, Linda Stephanie Cruz Ruiz, CR19015, GT03
Ejempo pronostico #Pronostico del precio de casas (medv) en Boston # 1.Modelo estimado library(lmtest) library(stargazer) library(equatiomatic) library(mlbench) #librería que tiene el data frame BostonHousing data(BostonHousing) #Modelo estimado medv~. indica "medv" en función del resto de variables del dataframe modelo_boston<-lm(formula...
882 sym R (7316 sym/9 pcs) 4 tbl
Estimadores HAC, LINDA STEPHANIE CRUZ RUIZ, CR19015, GT03
Estimacion del modelo options(scipen = 99999) library(foreign) datos_regresion <- read.dta("https://stats.idre.ucla.edu/stat/data/crime.dta") modelo_estimado<-lm(crime~poverty+single,data=datos_regresion) print(modelo_estimado) ## ## Call: ## lm(formula = crime ~ poverty + single, data = datos_regresion) ## ## Coefficients: ## (Interce...
152 sym R (3066 sym/12 pcs) 4 tbl