examples
examples copied to clipboard
Gapminders
- [x] Handle the data explicitly instead of loading it dynamically from an external URL directly from the notebook
Given the search I did last summer Gapminders was the only project that was downloading data dynamically from a notebook (e.g. pd.read_csv(external_url)
). It should instead have its data better defined. I'm suggesting adding data as a data source in the downloads
section of its anaconda-project.yml file. I would also be good to add a small test dataset in test_data/
.
(If the data isn't heavy at all it could be added to the /data
subfolder in the project directly).
That all sounds good, thanks!
In my latest PR, I removed downloading from the notebook and added a test dataset.