Skip to content

Instantly share code, notes, and snippets.

View juanchiem's full-sized avatar
😳

Juan Edwards Molina juanchiem

😳
View GitHub Profile
@juanchiem
juanchiem / ordenar_meses_summer_season.txt
Last active July 27, 2023 01:25
ordenar_meses_summer_season
gruesa <- format(ISOdate(2000, c(6:12,1:3), 1), "%B")
tibble::tribble(
~sitio, ~pp_agosto, ~pp_septiembre, ~pp_octubre, ~pp_noviembre, ~pp_diciembre, ~pp_enero, ~pp_febrero, ~pp_marzo,
"CHASCOMUS", 0, 0, 14L, 22L, 30L, 52L, 27L, 94L,
"RIVERA", 0, 50, 48L, 109L, 15L, 158L, 25L, 85L
) |>
pivot_longer(contains("pp"),
names_prefix = "pp_") |>