describe_column
Profiles a single column with full value distribution for low-cardinality data, histogram bins for numeric columns, and temporal range for datetime columns.
Instructions
Deep profile of a single column. Full value distribution for low-cardinality columns, histogram bins for numeric, temporal range for datetime. top_n capped at 200; histogram_bins capped at 50.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | Top values to return for categorical columns (default 20) | |
| column | Yes | Column name or column ID (e.g. 'lapd-crime::AREA NAME#column') | |
| redact | No | Scrub PII / credentials from value_distribution, top_values, and sample_values (default true). Numeric stats and counts are never altered. Set false for raw values when working with data you own. | |
| dataset | Yes | Dataset identifier | |
| histogram_bins | No | Bins for numeric histograms (default 10) | |
| redact_patterns | No | Additional Python regex patterns to redact on top of the built-in set. |