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

datateachr

R build status Codecov test coverage

Pronounced "Data Teacher"

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:

install.packages("devtools")
devtools::install_github("UBC-MDS/datateachr")

Vignette

You may also access this information through our vignette. First use this command for installation:

install.packages("devtools")
devtools::install_github("UBC-MDS/datateachr", build_vignettes = TRUE)

And to read the vignette use:

library(datateachr)
browseVignettes("datateachr")

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.