Publications by Martín Carías
Ingresos ENEI
MICROECONOMETRÍA EJEMPLO 3 INGRESOS ENEI Se cargan las librerias ## ## Please cite as: ## Hlavac, Marek (2022). stargazer: Well-Formatted Regression and Summary Statistics Tables. ## R package version 5.2.3. https://CRAN.R-project.org/package=stargazer Se ingresan los datos de la ENEI a evaluar Se ingresan los datos en la variable enei ## ...
1697 sym Python (9342 sym/50 pcs) 1 img
Lectura 1
TEORÍA 1. Autocorrelación La autocorrelación es un caso particular del modelo de regresión generalizado que se produce cuando las perturbaciones del modelo presentan correlaciones entre ellas. La autocorrelación supone que la matriz de varianzas y covarianzas de las perturbaciones presentan valores distintos de cero en los elementos que ...
8421 sym R (13853 sym/47 pcs) 8 img
Laboratorio #8
R Markdown library(readxl) library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.0 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.1 ✔ tibble 3.2.0 ## ✔ lubridate 1...
649 sym R (11050 sym/49 pcs) 2 img
Modelo Maruyama
MODELO MARUYAMA #Definir los parámetros del modelo, como a, b, T (tiempo final) #N (número de pasos de tiempo) y X0 (condición inicial). a <- 1 b <- 1 T <- 1 N <- 1000 X0 <- 1 #Calcular el paso de tiempo dt a partir de T y N. #Generar una secuencia de valores de dW utilizando la función rnorm(). dt <- T/N dW <- rnorm(N, mean = 0, sd = sq...
877 sym 1 img
Laboratorio #7
LABORATORIO 7 Se determina un par de valores numericos que se adapten en el medio de la prueba de causalidad de Granger. library(vars) ## Loading required package: MASS ## Loading required package: strucchange ## Loading required package: zoo ## ## Attaching package: 'zoo' ## The following objects are masked from 'package:base': ## ## as...
498 sym R (3441 sym/33 pcs) 3 img
Laboratorio #6
LABORATORIO 6 library(vars) ## Loading required package: MASS ## Loading required package: strucchange ## Loading required package: zoo ## ## Attaching package: 'zoo' ## The following objects are masked from 'package:base': ## ## as.Date, as.Date.numeric ## Loading required package: sandwich ## Loading required package: urca ## Loading req...
254 sym R (1940 sym/31 pcs) 2 img
Laboratorio #5
LABORATORIO 5 En este laboratorio se usaran los datos de los precios de las acciones de Ferrari en las fechas de 01/01/2019 hasta 01/01/2020. RACEdata <- pdfetch_YAHOO("RACE",from = c("2019-01-01"),to = c("2020-01-01"), interval = '1d') Novocure <- RACEdata[,4] La cantidad de observaciones totales es: length(Novocure) ## [1] 252 tsNovoCure <- t...
266 sym Python (1583 sym/15 pcs) 4 img
Laboratorio #4
Laboratorio 4 PIB de Portugal periodo (1961 - 2021) library(forecast) ## Registered S3 method overwritten by 'quantmod': ## method from ## as.zoo.data.frame zoo library(seasonal) library(tseries) library(readxl) PIBPORTUGAL <- read_excel(file.choose(), sheet = 1) data <- PIBPORTUGAL BDPORTUGAL <- ts(data$PIB, frequency = 1)...
331 sym R (2600 sym/23 pcs) 5 img
Laboratorio #3
rezagos library("forecast") ## Registered S3 method overwritten by 'quantmod': ## method from ## as.zoo.data.frame zoo library("tseries") x <- AirPassengers tseries::adf.test(x) ## Warning in tseries::adf.test(x): p-value smaller than printed p-value ## ## Augmented Dickey-Fuller Test ## ## data: x ## Dickey-Fuller = -7....
194 sym R (413 sym/5 pcs) 1 img
Document-pruebadellab
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