load_dataset
Load a dataset from various file formats and get a structural overview including column types, classifications, and missing value counts. Use this to quickly understand an unfamiliar dataset before deeper analysis.
Instructions
Load a dataset and return a structural overview. Call this first when exploring an unfamiliar dataset — it gives you the shape, column types, classifications, and missing value counts you need to decide what to investigate next.
Returns: column names, dtypes, row count, per-column classifications (continuous, discrete, categorical, binary, temporal, high_cardinality), missing value counts and percentages per column.
Supports CSV, Parquet, Excel (.xlsx/.xls), JSON, NDJSON, Avro, and SQLite
(.db/.sqlite). For SQLite files with multiple tables, pass the table name
via table. If omitted and the database has exactly one table, it is loaded
automatically.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| table | No |