You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provides instant access to many datasets right from Python (in pandas DataFrame structure).
What?
The idea is simple. There are various datasets available out there, but they are scattered in different places over the web.
Is there a quick way (in Python) to access them instantly without going through the hassle of searching, downloading, and reading ... etc?
PyDataset tries to address that question :)
In R, there is a very easy and immediate way to access multiple statistical datasets,
in almost no effort. All it takes is one line > data(dataset_name).
This makes the life easier for quick prototyping and testing.
Well, I am jealous that Python does not have a similar functionality.
Thus, the aim of pydataset is to fill that gap.
Currently, pydataset has about 757 (mostly numerical-based) datasets, that are based on RDatasets.
In the future, I plan to scale it to include a larger set of datasets.
For example,
include textual data for NLP-related tasks, and
allow adding a new dataset to the in-module repository.