You can also embed plots, for example:
## Warning: package 'dplyr' was built under R version 4.5.3
##
## Adjuntando el paquete: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
## # A tibble: 2 × 7
## sexo casos minimo maximo media mediana desviacion
## <chr> <int> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 Hombres 7774 40000 38000000 2604545. 2000000 2318912.
## 2 Mujeres 7613 25000 43000000 2295669. 1750905 2090053.
Note that the echo = FALSE parameter was added to the
code chunk to prevent printing of the R code that generated the
plot.
```{´´´{r} ibrary(ggplot2)
ggplot(salarios, aes(x=sexo, y=salario)) + geom_boxplot(
# custom boxes
color="green",
fill="blue",
alpha=0.2,
# Notch?
notch=TRUE,
notchwidth = 0.5,
# custom outliers
outlier.colour="red",
outlier.fill="red",
outlier.size=5 )
```