Publications by Jaime Isaac
cadenas de markov para pronosticar precios de acciones
cadenas de markov 2 library(readxl) Warning: package 'readxl' was built under R version 4.3.3 accionessp500markov <- read_excel("accionessp500markov.xlsx", sheet = "Hoja1") New names: • `` -> `...10` • `` -> `...11` • `` -> `...12` head(accionessp500markov) # A tibble: 6 × 12 Date Open High `Adj Close` reto...
4521 sym 3 img
ejemplo de procesos de Poisson aplicacion tesis
prueba KS poisson Author Affiliation Jaime Isaac UNIVERSIDAD DE EL SALVADOR library(readxl) Warning: package 'readxl' was built under R version 4.3.3 datos <- read_excel("poisson tablas.xlsx", sheet = "hoja2") head(datos) # A tibble: 6 × 9 Horario T Lunes Martes Miércoles Jueves Viernes Sábado Domingo <c...
231 sym Python (8026 sym/41 pcs)
estadistica descriptiva 1 en R y Python
Tabla de contenidos EJERCICIOS DISTRIBUCIONES DE PROBABILIDAD estadistica descriptiva en R y Python. ESTADISTICA Tabla de frecuencias de una variable continua agrupada en intervalos. Estadísticos descriptivos AHORA EN PYTHON Tablas de frecuencias unidimensionales ESTADISTISCA DESCRIPTIVA ESTADISTICA DESCRIPTIVA CON R Y PYTHON PARTE 1 Autor/...
4736 sym 14 img 4 tbl
un analisis de intervencion de series temporales
library(readxl) remesas <- read_excel("C:/Users/MINEDUCYT/Downloads/baseremesasnormal.xlsx", col_types = c("text", "numeric")) remesas ## # A tibble: 360 × 2 ## Concepto `Ingresos mensuales de remesas familiares` ## <chr> <dbl> ## 1 1991-01 ...
86 sym R (14415 sym/75 pcs) 7 img
Ecuaciones Polinomicas en R y Python
ECUACIONES POLINOMICAS EN R Y PYTHON. Resolver la ecuacion \(-4x^3-6x^2-4x+1=0\) coef=c(1,-4,-6,-4) polyroot(coef) ## [1] 0.1893984+0.0000000i -0.8446992+0.7787506i -0.8446992-0.7787506i c=c(-4,6,-4,1) polyroot(c) ## [1] 1+1i 1-1i 2-0i import numpy as np p=[1,-4,6,-4] np.roots(p) ## array([2.+0.j, 1.+1.j, 1.-1.j]) coef=c(-3,30,12,8) round(polyroot...
168 sym R (2245 sym/38 pcs)
ANALISIS DE INTERVENCION DE SERIES TEMPORALES EN PYTHON
ANALISIS DE INTERVENCION DE SERIES TEMPORALES EN PYTHON Author Affiliation Jaime Isaac Universidad e El Salvador , Facultad Multidisciplinaria de Occidente import pyreadstat import pandas as pd import numpy as np import matplotlib.pyplot as plt from statsmodels.graphics.tsaplots import plot_acf, plot_pacf from statsmodels.tsa...
574 sym Python (17017 sym/58 pcs) 15 img 2 tbl
ANALISIS DE INTERVENCION DE SERIES TEMPORALES EN R
Tabla de contenidos ANALISIS DE INTERVENCION EN R SEGUNDO EJEMPLO. Lectura de la base de datos. pasando la data a serie de tiempo. graficando las series de tiempo ANALISIS DE INTERVENCION DE SERIES TEMPORALES UNIVARIANTES Autor/a Afiliación Jaime Isaac UNIVERSIDAD DE EL SALVADOR FACULTAD MULTIDISCIPLINARIA DE OCCIDENTE ANALISIS...
825 sym Python (20783 sym/85 pcs) 7 img
Metodo de Newton Raphson usando R y Python
METODO DE NEWTON RAPHSON USANDO R Y PYTHON newton_raphson <- function(f, df, x0, tol = 1e-7, max_iter = 1000) { x <- x0 iter <- 0 while (iter < max_iter) { x_new <- x - f(x) / df(x) if (abs(x_new - x) < tol) { return(list(raiz = x_new, iteraciones = iter)) } x <- x_new iter <- iter + 1 } return(li...
173 sym
html
METODO DE FERRARI EN R Y PYTHON resolver_cuartica <- function(a, b, c, d, e) { if (a == 0) stop("El coeficiente 'a' debe ser distinto de cero") # Normalizar los coeficientes b <- b / a c <- c / a d <- d / a e <- e / a # Resolver la ecuación cúbica auxiliar cubic <- function(p, q, r) { Q <- (3 * q - p^2) / 9 R ...
54 sym
Ecuaciones Polinomicas en R y Python
SOlucion de ecuaciones Polinomicas en R y Python Se muestra cómo resolver ecuaciones polinómicas en R y Python utilizando funciones específicas para encontrar las raíces de polinomios. En R En R, podemos usar la función polyroot para encontrar las raíces de un polinomio dado sus coeficientes. Ejemplo en R Consideremos el polinomio (x^4 - 3...
918 sym