From @rpruim on June 24, 2013 18:7
I'm wondering about the design of fetchGapminder(). It seems to me that it is really fetching data that we are curating (using fetchData()) and then doing a bit of post processing. Furthermore, only a small set (is this documented anywhere) of Gapminder data sets are available.
I'm wondering whether we shouldn't just put the post-processed data sets online and fetch them with, for example, fetchData("gapminder/Alcohol").
Also, I'm wondering whether we can dispense with the .csv (as I did above) and use read.file() and a designated order of extensions (.rda, .csv, .txt perhaps).
Copied from original issue: ProjectMOSAIC/mosaic#209
From @rpruim on June 24, 2013 18:7
I'm wondering about the design of
fetchGapminder(). It seems to me that it is really fetching data that we are curating (usingfetchData()) and then doing a bit of post processing. Furthermore, only a small set (is this documented anywhere) of Gapminder data sets are available.I'm wondering whether we shouldn't just put the post-processed data sets online and fetch them with, for example,
fetchData("gapminder/Alcohol").Also, I'm wondering whether we can dispense with the
.csv(as I did above) and useread.file()and a designated order of extensions (.rda, .csv, .txt perhaps).Copied from original issue: ProjectMOSAIC/mosaic#209