`geom_smooth()` using method = 'loess' and formula = 'y ~ x'
Xalapa, Ver., 25 de abril, 2025
En el manual de Quarto hay información sobre presentaciones
Te sugiero:
`geom_smooth()` using method = 'loess' and formula = 'y ~ x'
library(leaflet)
library(leaflet.extras)
basemap <- leaflet() %>%
# ubicación y nivel de zoom
setView(lng = -96.942838, lat = 19.512198, zoom = 20) %>%
# Añade proveedor de maa
addProviderTiles(
"OpenStreetMap",
# Dale un nombre a la capa
group = "Mapa-OpenStreet"
) %>%
addProviderTiles("Esri.WorldImagery",
group = "ESRI") %>%
addWMSTiles(
"http://gaia.inegi.org.mx/NLB/tunnel/wms/wms61?",
layers = "Ortofotos",
options = WMSTileOptions(format = "image/png", transparent = TRUE),
attribution = "Inegi",
group = "Inegi-ortofoto") %>%
addWMSTiles(
"http://gaia.inegi.org.mx/NLB/tunnel/wms/wms61?",
layers = "c407",
options = WMSTileOptions(format = "image/png", transparent = TRUE),
attribution = "Inegi",
group = "Humedad del suelo")
#%>%
# addWMSLegend("http://gaia.inegi.org.mx/NLB/tunnel/wms/wms61",
# 'REQUEST=GetLegendGraphic&VERSION=1.1.0',
# '&FORMAT=image/png&LAYER=c407')
icon.fa <- makeAwesomeIcon(icon = "bicycle", markerColor = "green",
library = "fa",
iconColor = "red")
map_1 <- basemap %>%
addAwesomeMarkers(
lat = 19.512198,
lng = -96.942838,
label = "Starting point",
icon = icon.fa
) %>%
# Layers control
addLayersControl(
baseGroups = c(
"Mapa-OpenStreet",
"ESRI",
"Inegi-ortofoto",
"Humedad del suelo"
),
options = layersControlOptions(collapsed = FALSE)
)
map_1En orden de complejidad:
title-slide-attributes.
title-slide-attributes:
data-background-image: /ruta/a/imágen_para_portada.png
data-background-size: contain
data-background-opacity: "0.5"template-partials que permite usar una plantilla html a tu gusto.texto 10, 0, 0 texto 10, 0, 50% texto 10, 50%, 0 texto 10, 100%, 100%
Jaguar
Miguel Equihua
6-agosto-2024
revealjs esto requiere agregar la funcionalidad con un pluginquarto add quarto-ext/pointer
_extensions en la raíz de tu proyecto,_extensions está lo necesario para usar los plugins que instales.Fuente: Imagen de edmondlafoto en Pixabay

¡Adios!