get_statistics
Generate statistical summaries for numeric columns in CSV files to analyze data distribution, central tendencies, and variability metrics.
Instructions
Get statistical summary of numeric columns in the CSV file.
Args:
filename: Name of the CSV file
Returns:
Dictionary with statistical analysis of numeric columns
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}