library(readxl)
library(knitr)
library(dplyr)
library(DT)

Modelos empíricos


EJERCICIO 1

Infección con malaria: número de parásitos en 1 ml de sangre en niños de diversas edades.

mod_empiricos <- read_excel("~/R/MeCoBi/mod_empiricos.xlsx", 
    sheet = "malaria")
#creando una tabla elegante
datatable(mod_empiricos,
          filter = 'top', options = list(
            pageLength = 15, autoWidth = TRUE
          ))
#si no funciona el anterior, algo más sencillo
kable(mod_empiricos)
age number
12 730
8 143
16 2275
8 37
11 535
10 465
12 690
13 826
15 1340
14 1580
14 1340
15 1925
15 2662

Modelos de Regresión


Regresión Lineal Simple


Referencias

Shiflet, A. 2014, Introduction to Computational Science, 2nd Edition, Princeton University Press, Princeton, New Jersey.