load_csv
Load CSV files into pandas DataFrames for data analysis. Specify file path and optional name to get shape, columns, and data type summaries.
Instructions
Load a CSV file into a pandas DataFrame.
Args: file_path: Path to the CSV file to load name: Optional name for the dataframe. If not provided, uses the filename without extension.
Returns: Summary of the loaded dataframe including shape, columns, and dtypes.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| name | No |