knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of esalqmet is to ...
You can install the released version of esalqmet from from GitHub with:
# install.packages("devtools") devtools::install_github("italocegatta/esalqmet")
This is a basic example which shows you how to solve a common problem:
library(esalqmet) library(tidyverse) library(lubridate) esalqmet_automatic %>% group_by(ano = floor_date(data, "year")) %>% summarise(ppt = sum(ppt, na.rm = TRUE)) %>% ggplot(aes(ano, ppt)) + geom_area(fill = "cadetblue", alpha = 0.7) + scale_x_date(date_breaks = "2 year", date_labels = "%Y") + theme_bw()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.