rename_columns
Change column names in CSV files by specifying a mapping. Simplifies data manipulation and ensures accurate column references in datasets.
Instructions
Rename columns in the dataframe.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mapping | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mapping": {
"additionalProperties": {
"type": "string"
},
"title": "Mapping",
"type": "object"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"mapping"
],
"type": "object"
}