list_datasets()

Return a list of all built-in datasets with their metadata.

Usage

Source

list_datasets()

Returns

list[dict[str, str]]
Each entry has keys name, description, variables, family, and note.

Examples

import whittaker as wk

rows = wk.list_datasets()
[r["name"] for r in rows]
['mcycle',
 'co2',
 'fish',
 'credit',
 'wages',
 'proportions',
 'meuse',
 'survival',
 'abalone',
 'climate']