Datazets is a Python package designed to easily import a collection of well-known example data sets, often used for machine learning, data analysis, and educational purposes. It provides a simple API to access these datasets without needing to manually download or preprocess them. The current version is 1.1.3, released on June 21, 2025, and it appears to have an active release cadence.
pip install datazetsVerified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates how to import the `datazets` library and load the 'titanic' dataset into a pandas DataFrame using the `get()` function.
Always inspect the loaded dataset for quality issues using methods like `df.info()`, `df.isnull().sum()`, `df.describe()`, and apply appropriate data cleaning and preprocessing techniques (e.g., using pandas, scikit-learn).
Refer to the official Datazets GitHub repository or documentation for a list of available dataset names (e.g., 'titanic', 'iris', 'boston'). Ensure the dataset name string is spelled correctly and matches one of the supported identifiers.
Run `pip install datazets` to install the library.
Check the spelling of the dataset name. Consult the `datazets` documentation or GitHub README for a list of valid dataset names (e.g., `dz.get('titanic')`, not `dz.get('tianic')`).No dependency data recorded yet.