Titulo

Subtitulo

Este es un ejemplo de texto que da entrada a una lista genérica de elementos:

  • Elemento 1
  • Elemento 2
  • Elemento 3

Encabezado 1

Encabezado 2

Encabezado 3

Encabezado 4

Encabezado 5
Encabezado 6

Elementos de lista

  • Elemento de lista 1

    • Elemento de lista

      • Elemento de lista
      • Otro elemento de lsita

Enfasis de letras (negritas y cursivas)

asi se pone letra cursiva

asi se pone letra en negritas

Enlaces de paginas de Internet

enlace a SPEI

Insertar imagenes

Caption for the picture.

Insertar Cuadros

Jugador Grand Slams
Federer 20
Nadal 19

Insertar una ecuacion matemática

\[\begin{equation} f(x)=\frac{1}{\sqrt{2\pi}}e^{-x^2/2} \end{equation}\]

o de esta otra forma

\[ f(x)=\frac{1}{\sqrt{2\pi}}e^{-x^2/2} \] ## o haciendo su ecuacion en linea

https://www.codecogs.com/latex/eqneditor.php?lang=es-esLatex \[y=\beta _{0}+\beta _{1}(x)\]

Insertar video

library(vembedr)
embed_url("https://youtu.be/S7uiG-Qayrg")

Insertar tablas de esta forma

knitr::kable(iris[1:5,, 1:5], caption = "A table caption")
## Warning in if (drop) {: the condition has length > 1 and only the first element
## will be used
A table caption
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
5.1 3.5 1.4 0.2 setosa
4.9 3.0 1.4 0.2 setosa
4.7 3.2 1.3 0.2 setosa
4.6 3.1 1.5 0.2 setosa
5.0 3.6 1.4 0.2 setosa

Insertar tablas de esta otra forma

summary(iris)
##   Sepal.Length    Sepal.Width     Petal.Length    Petal.Width   
##  Min.   :4.300   Min.   :2.000   Min.   :1.000   Min.   :0.100  
##  1st Qu.:5.100   1st Qu.:2.800   1st Qu.:1.600   1st Qu.:0.300  
##  Median :5.800   Median :3.000   Median :4.350   Median :1.300  
##  Mean   :5.843   Mean   :3.057   Mean   :3.758   Mean   :1.199  
##  3rd Qu.:6.400   3rd Qu.:3.300   3rd Qu.:5.100   3rd Qu.:1.800  
##  Max.   :7.900   Max.   :4.400   Max.   :6.900   Max.   :2.500  
##        Species  
##  setosa    :50  
##  versicolor:50  
##  virginica :50  
##                 
##                 
## 
knitr::kable(summary(iris), caption = "A table caption")
A table caption
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
Min. :4.300 Min. :2.000 Min. :1.000 Min. :0.100 setosa :50
1st Qu.:5.100 1st Qu.:2.800 1st Qu.:1.600 1st Qu.:0.300 versicolor:50
Median :5.800 Median :3.000 Median :4.350 Median :1.300 virginica :50
Mean :5.843 Mean :3.057 Mean :3.758 Mean :1.199 NA
3rd Qu.:6.400 3rd Qu.:3.300 3rd Qu.:5.100 3rd Qu.:1.800 NA
Max. :7.900 Max. :4.400 Max. :6.900 Max. :2.500 NA
library(formattable)
as.datatable(formattable(iris))
## Loading required namespace: DT

Insertar una imagen desde mi computadora

Caption for the picture.

Results

Plots

We show a scatter plot in this section.

par(mfrow=c(1,3))
plot(Volume ~ Height, data = trees, pch = 19, col="orange")
boxplot(trees)
hist(trees$Height)

Tables

We show the data in this tab.

library(formattable)
as.datatable(formattable(trees))