get_column_data
Extract data from specific columns with optional row range slicing for focused data analysis. Supports filtering by row indices to retrieve targeted column values with range metadata.
Instructions
Get data from specific column with optional row range slicing.
Supports row range filtering for focused analysis. Returns column values with range metadata.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Column name to retrieve data from | |
| start_row | No | Starting row index (inclusive, 0-based) for data slice | |
| end_row | No | Ending row index (exclusive, 0-based) for data slice |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"description": "Column name to retrieve data from",
"type": "string"
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Ending row index (exclusive, 0-based) for data slice"
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Starting row index (inclusive, 0-based) for data slice"
}
},
"required": [
"column"
],
"type": "object"
}