Víctor Gauto
  • Tidytuesday
  • Publicaciones
  • Mapas de Argentina
  • Visualizaciones
  • Mi CV

Sitio en construcción

Contenido

  • Paquetes
  • Estilos
  • Epígrafe
  • Datos
  • Procesamiento
  • Figura
  • Editar esta página
  • Informar sobre problema

Semana 03

  • Mostrar todo el código
  • Ocultar todo el código

  • Ver el código fuente
geom_area
Autor

Víctor Gauto

Fecha de publicación

21 de enero de 2025

Cantidad de personas muertas en expediciones al Himalaya.

Semana 03, 2025

Paquetes

Ocultar código
library(glue)
library(ggtext)
library(showtext)
library(tidyverse)

Estilos

Colores

Ocultar código
c1 <- "grey5"
c2 <- "grey40"
c3 <- "grey70"
c4 <- "grey90"

Fuentes: Ubuntu, JetBrains Mono y Bebas Neue

Ocultar código
font_add(
  family = "ubuntu",
  regular = "././fuente/Ubuntu-Regular.ttf",
  bold = "././fuente/Ubuntu-Bold.ttf",
  italic = "././fuente/Ubuntu-Italic.ttf"
)

font_add(
  family = "jet",
  regular = "././fuente/JetBrainsMonoNLNerdFontMono-Regular.ttf"
)

font_add(
  family = "bebas",
  regular = "././fuente/BebasNeue-Regular.ttf"
)

showtext_auto()
showtext_opts(dpi = 300)

Epígrafe

Ocultar código
fuente <- glue(
    "Datos: <span style='color:{c4};'><span style='font-family:jet;'>",
    "{{<b>tidytuesdayR</b>}}</span> semana 03, ",
    "<b>Himalayan Database</b>.</span>"
)

autor <- glue("<span style='color:{c4};'>**Víctor Gauto**</span>")
icon_twitter <- glue("<span style='font-family:jet;'>&#xf099;</span>")
icon_instagram <- glue("<span style='font-family:jet;'>&#xf16d;</span>")
icon_github <- glue("<span style='font-family:jet;'>&#xf09b;</span>")
icon_mastodon <- glue("<span style='font-family:jet;'>&#xf0ad1;</span>")
icon_bsky <- glue("<span style='font-family:jet;'>&#xe28e;</span>")
usuario <- glue("<span style='color:{c4};'>**vhgauto**</span>")
sep <- glue("**|**")

mi_caption <- glue(
    "{fuente}<br>{autor} {sep} {icon_github} {icon_twitter} {icon_instagram} ",
    "{icon_mastodon} {icon_bsky} {usuario}"
)

Datos

Ocultar código
tuesdata <- tidytuesdayR::tt_load(2025, 03)
exped <- tuesdata$exped_tidy

Procesamiento

Me interesa la cantidad de muertes que ocurrieron en cada año.

Sumo las muertes de integrantes y personal de la expedición

Ocultar código
d <- exped |>
  select(PEAKID, YEAR, contains("DEATH")) |>
  mutate(
    m = MDEATHS + HDEATHS
  ) |>
  reframe(
    s = sum(m),
    .by = YEAR
  )

Figura

Subtítulo, nota y símbolo de calavera.

Ocultar código
mi_subtitulo <- glue(
  "Cantidad de muertes en expediciones al <b style='color: {c4}'>Himalaya</b>"
)

nota <- str_wrap(
  "Las muertes incluyen a los integrantes de la expedición y al personal
  contratado.",
  30
)

calavera <- "<span style='font-family:jet;'>&#xf068c;</span>"

Gradiente de color para la figura

Ocultar código
relleno <- grid::linearGradient(
  colours = colorRampPalette(c(c1, c2, c3, c4), bias =.25)(10),
  x1 = 0,
  y1 = 0,
  x2 = 0,
  y2 = 1
)

Figura.

Ocultar código
g <- ggplot(d, aes(YEAR, s)) +
  geom_area(fill = relleno) +
  annotate(
    geom = "richtext", x = 2020, y = seq(5, 25, 5), label = calavera, size = 10,
    color = c3, fill = NA, label.color = NA, hjust = 1
  ) +
  annotate(
    geom = "text", x = 2020.1, y = 24, label = nota, color = c3, size = 6,
    hjust = 0, lineheight = .8
  ) +
  scale_y_continuous(
    limits = c(0, 25),
    expand = c(0, 0),
    breaks = seq(0, 25, 5)
  ) +
  labs(subtitle = mi_subtitulo, caption = mi_caption) +
  coord_cartesian(expand = FALSE, clip = "off") +
  theme_void() +
  theme(
    aspect.ratio = 1,
    plot.margin = margin(l = 0, r = 20),
    plot.background = element_rect(fill = c1, color = NA),
    plot.subtitle = element_markdown(
      family = "ubuntu", color = c3, size = 30, hjust = .5,
      margin = margin(b = 30, t = 20)
    ),
    plot.caption = element_markdown(
      family = "ubuntu", size = 12, color = c3, margin = margin(b = 10, t = 20),
      lineheight = 1.5
    ),
    panel.grid.major.y = element_line(
      color = c2, linewidth = .2, linetype = "FF"
    ),
    axis.text.y = element_markdown(
      color = c3, family = "jet", size = 15, margin = margin(r = 25)
    ),
    axis.text.x = element_text(
      color = c3, family = "bebas", size = 25, margin = margin(t = 15)
    )
  )

Guardo

Ocultar código
ggsave(
  plot = g,
  filename = "tidytuesday/2025/semana_03.png",
  width = 30,
  height = 30,
  units = "cm"
)
Subir
Ejecutar el código
---
format:
  html:
    code-fold: show
    code-summary: "Ocultar código"
    code-line-numbers: false
    code-annotations: false
    code-link: true
    code-tools:
        source: true
        toggle: true
        caption: "Código"
    code-overflow: scroll
    page-layout: full
editor_options:
  chunk_output_type: console
categories: ["geom_area"]
execute:
  eval: false
  echo: true
  warning: false
title: "Semana 03"
date: 2025-01-21
author: Víctor Gauto
---

Cantidad de personas muertas en expediciones al Himalaya.

![Semana 03, 2025](semana_03.png)

## Paquetes

```{r}
library(glue)
library(ggtext)
library(showtext)
library(tidyverse)
```

## Estilos

Colores

```{r}
c1 <- "grey5"
c2 <- "grey40"
c3 <- "grey70"
c4 <- "grey90"
```

Fuentes: Ubuntu, JetBrains Mono y Bebas Neue

```{r}
font_add(
  family = "ubuntu",
  regular = "././fuente/Ubuntu-Regular.ttf",
  bold = "././fuente/Ubuntu-Bold.ttf",
  italic = "././fuente/Ubuntu-Italic.ttf"
)

font_add(
  family = "jet",
  regular = "././fuente/JetBrainsMonoNLNerdFontMono-Regular.ttf"
)

font_add(
  family = "bebas",
  regular = "././fuente/BebasNeue-Regular.ttf"
)

showtext_auto()
showtext_opts(dpi = 300)
```

## Epígrafe

```{r}
fuente <- glue(
    "Datos: <span style='color:{c4};'><span style='font-family:jet;'>",
    "{{<b>tidytuesdayR</b>}}</span> semana 03, ",
    "<b>Himalayan Database</b>.</span>"
)

autor <- glue("<span style='color:{c4};'>**Víctor Gauto**</span>")
icon_twitter <- glue("<span style='font-family:jet;'>&#xf099;</span>")
icon_instagram <- glue("<span style='font-family:jet;'>&#xf16d;</span>")
icon_github <- glue("<span style='font-family:jet;'>&#xf09b;</span>")
icon_mastodon <- glue("<span style='font-family:jet;'>&#xf0ad1;</span>")
icon_bsky <- glue("<span style='font-family:jet;'>&#xe28e;</span>")
usuario <- glue("<span style='color:{c4};'>**vhgauto**</span>")
sep <- glue("**|**")

mi_caption <- glue(
    "{fuente}<br>{autor} {sep} {icon_github} {icon_twitter} {icon_instagram} ",
    "{icon_mastodon} {icon_bsky} {usuario}"
)
```

## Datos

```{r}
tuesdata <- tidytuesdayR::tt_load(2025, 03)
exped <- tuesdata$exped_tidy
```

## Procesamiento

Me interesa la cantidad de muertes que ocurrieron en cada año.

Sumo las muertes de integrantes y personal de la expedición

```{r}
d <- exped |>
  select(PEAKID, YEAR, contains("DEATH")) |>
  mutate(
    m = MDEATHS + HDEATHS
  ) |>
  reframe(
    s = sum(m),
    .by = YEAR
  )
```

## Figura

Subtítulo, nota y símbolo de calavera.

```{r}
mi_subtitulo <- glue(
  "Cantidad de muertes en expediciones al <b style='color: {c4}'>Himalaya</b>"
)

nota <- str_wrap(
  "Las muertes incluyen a los integrantes de la expedición y al personal
  contratado.",
  30
)

calavera <- "<span style='font-family:jet;'>&#xf068c;</span>"
```

Gradiente de color para la figura

```{r}
relleno <- grid::linearGradient(
  colours = colorRampPalette(c(c1, c2, c3, c4), bias =.25)(10),
  x1 = 0,
  y1 = 0,
  x2 = 0,
  y2 = 1
)
```

Figura.

```{r}
g <- ggplot(d, aes(YEAR, s)) +
  geom_area(fill = relleno) +
  annotate(
    geom = "richtext", x = 2020, y = seq(5, 25, 5), label = calavera, size = 10,
    color = c3, fill = NA, label.color = NA, hjust = 1
  ) +
  annotate(
    geom = "text", x = 2020.1, y = 24, label = nota, color = c3, size = 6,
    hjust = 0, lineheight = .8
  ) +
  scale_y_continuous(
    limits = c(0, 25),
    expand = c(0, 0),
    breaks = seq(0, 25, 5)
  ) +
  labs(subtitle = mi_subtitulo, caption = mi_caption) +
  coord_cartesian(expand = FALSE, clip = "off") +
  theme_void() +
  theme(
    aspect.ratio = 1,
    plot.margin = margin(l = 0, r = 20),
    plot.background = element_rect(fill = c1, color = NA),
    plot.subtitle = element_markdown(
      family = "ubuntu", color = c3, size = 30, hjust = .5,
      margin = margin(b = 30, t = 20)
    ),
    plot.caption = element_markdown(
      family = "ubuntu", size = 12, color = c3, margin = margin(b = 10, t = 20),
      lineheight = 1.5
    ),
    panel.grid.major.y = element_line(
      color = c2, linewidth = .2, linetype = "FF"
    ),
    axis.text.y = element_markdown(
      color = c3, family = "jet", size = 15, margin = margin(r = 25)
    ),
    axis.text.x = element_text(
      color = c3, family = "bebas", size = 25, margin = margin(t = 15)
    )
  )
```

Guardo

```{r}
ggsave(
  plot = g,
  filename = "tidytuesday/2025/semana_03.png",
  width = 30,
  height = 30,
  units = "cm"
)
```

Creado con y

Víctor Gauto

  • Editar esta página
  • Informar sobre problema