knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

esalqmet

CRAN status Travis build status AppVeyor build status

The goal of esalqmet is to ...

Installation

You can install the released version of esalqmet from from GitHub with:

# install.packages("devtools")
devtools::install_github("italocegatta/esalqmet")

Example

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()


italocegatta/esalqmet documentation built on Jan. 3, 2020, 7:22 a.m.