data-raw/DATASET.R

## code to prepare `DATASET` dataset goes here

set.seed(100)
library(tibble)
x <- rnorm(100)
y <- x*2 + rnorm(100)
sample_data <- data_frame(x = x, y = y)


usethis::use_data(sample_data, compress = "xz")
onehungano1/maptools documentation built on May 10, 2019, 2:44 p.m.