get_cell_value
Retrieve specific cell values from CSV data using row and column coordinates, returning data with type information for analysis.
Instructions
Get value of specific cell with coordinate targeting.
Supports column name or index targeting. Returns value with coordinates and data type information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_index | Yes | Row index (0-based) to retrieve cell from | |
| column | Yes | Column name or column index (0-based) to retrieve |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | Cell value (None if null/missing) | |
| success | No | Whether operation completed successfully | |
| data_type | Yes | Pandas data type of the column | |
| coordinates | Yes | Cell coordinates with row index and column name |