PROFILE_DATA
Performs Exploratory Data Analysis (EDA) on a dataset. Outputs a comprehensive statistical profile including descriptive statistics (mean, median, min, max, std), missing value counts, unique value counts, and a correlation matrix for numeric columns.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
input_path | string | yes | Absolute path to the CSV or Excel dataset. |
output_path | string | yes | Absolute path where the profiling report (Markdown or TXT format) will be saved. |
sheet_name | string | — | For Excel files only: specific sheet to analyze. Default is the first sheet. |
How to use it
You normally trigger this by describing what you want in chat — the agent selects PROFILE_DATA automatically. For example:
Try saying
“use analyst tools to profile …”
In a workflow
As a step in a multi-step workflow DAG:
json
{
"id": "s1",
"agent": "analyst_tools",
"action": "PROFILE_DATA",
"args": {
"input_path": "/Users/me/Documents/file.txt",
"output_path": "/Users/me/Documents/file.txt",
"sheet_name": "…"
},
"depends_on": [],
"outputs": []
}Direct call
For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.
bash
curl -X POST http://127.0.0.1:8000/execute_tool \
-H "Content-Type: application/json" \
-d '{"tool_name":"PROFILE_DATA","args":{"input_path":"/Users/me/Documents/file.txt","output_path":"/Users/me/Documents/file.txt","sheet_name":"…"}}'Part of the analyst_tools plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.