save_data
Store data in a named table for future visualization by specifying a table name and providing the dataset. Simplified data management for creating visualizations with Vega-Lite syntax.
Instructions
A tool which allows you to save data to a named table for later use in visualizations. When to use this tool:
Use this tool when you have data that you want to visualize later. How to use this tool:
Provide the name of the table to save the data to (for later reference) and the data itself.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The data to save | |
name | Yes | The name of the table to save the data to |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "The data to save",
"items": {
"description": "Row of the table as a dictionary/object",
"type": "object"
},
"type": "array"
},
"name": {
"description": "The name of the table to save the data to",
"type": "string"
}
},
"required": [
"name",
"data"
],
"type": "object"
}