Este es un ejemplo de texto que da entrada a una lista genérica de elementos:
Elemento de lista 1
Elemento de lista
asi se pone letra cursiva
asi se pone letra en negritas
Caption for the picture.
Jugador | Grand Slams |
---|---|
Federer | 20 |
Nadal | 19 |
\[ 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)\]
library(vembedr)
embed_url("https://youtu.be/S7uiG-Qayrg")
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
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 |
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")
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
Caption for the picture.
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)
We show the data in this tab.
library(formattable)
as.datatable(formattable(trees))