knitr::opts_chunk$set(collapse = T, comment = "#>")
library(datateachr)

The goal of datateachr is to provide an easy way to access open source data for educational purposes. It contains several semi-tidied data sets obtained from multiple sources.

Installation

You can install the development version from GitHub with:

Data

This package currently contains the following data sets:

Example

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

library(dplyr)
library(datateachr)


vancouver_trees %>%
  filter(genus_name == "ACER") %>% 
  arrange(desc(diameter)) %>%
  head()

Citation

Run this command to get information about how to cite this package.

citation("datateachr")


UBC-MDS/datateachr documentation built on Aug. 24, 2020, 3:21 a.m.