get_column_statistics
Analyze a single column's statistical properties including data type, null values, and numerical summary for data quality assessment and feature understanding.
Instructions
Get detailed statistical analysis for a single column.
Provides focused statistical analysis for a specific column including data type information, null value handling, and comprehensive numerical statistics when applicable.
Returns: Detailed statistical analysis for the specified column
Column Analysis: 🔍 Data Type: Detected pandas data type 📊 Statistics: Complete statistical summary for numeric columns 🔢 Non-null Count: Number of valid (non-null) values 📈 Distribution: Statistical distribution characteristics
Examples: # Analyze a price column stats = await get_column_statistics(ctx, "price")
# Analyze a categorical column
stats = await get_column_statistics(ctx, "category")AI Workflow Integration: 1. Deep dive analysis for specific columns of interest 2. Data quality assessment for individual features 3. Understanding column characteristics for modeling 4. Validation of data transformations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Name of the column to analyze in detail |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Name of the analyzed column | |
| success | No | Whether operation completed successfully | |
| data_type | Yes | Pandas data type of the column | |
| statistics | Yes | Statistical summary for the column | |
| non_null_count | Yes | Number of non-null values in the column |