README.md

httbl

The goal of httbl is to ...

Installation

devtools::install_github("ottlngr/httbl")

Example

This is a basic example which shows you how to solve a common problem:

library(httbl)
library(dplyr)
library(tidyr)
library(gapminder)

data("gapminder")

gapminder %>% 
  group_by(continent, country, year) %>% 
  nest() %>% 
  group_by(continent, country) %>% 
  nest() %>% 
  group_by(continent) %>% 
  nest() %>% 
  httbl()


ottlngr/httbl documentation built on May 30, 2019, 12:47 p.m.