jumpingrivers / datasauRus

R Package 📦 Containing the Datasaurus Dozen datasets :bar_chart:

Home Page:https://jumpingrivers.github.io/datasauRus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Check data (tsvs) for converting to built-in datasets

stephlocke opened this issue · comments

The tsvs are in extdata, we need to convert them to built in datasets but we need to check the file structure to see if it's a simple conversion

I think .tsv i just tab separated so it should be a quick conversion with something like:

dat <- read.table("./inst/extdata/BoxPlots.tsv")
save(dat, file = "./inst/extdata/BoxPlots.Rda")

Lucy did this with PR #4 !