knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)

These data are transcribed from the monthly utility statements over 18 years (and counting!) for a home in Saint Paul, Minnesota, USA.

months <- c("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
tmp <- read_csv("data-raw/Utilities/utilities-up-to-date.csv")
tmp$month <- factor(months[tmp$month], levels = months)
MN_home <- tmp
save(MN_home, file = "../../data/MN_home.rda")


dtkaplan/statPREPpackage documentation built on May 15, 2019, 5:22 p.m.