Data Visualizer Pack
★Trustedv1.0.0MIT✔Verified88by AgentNode · published 22 days ago · toolpack
Create charts, graphs, and dashboards from data.
Generate bar charts, line graphs, scatter plots, heatmaps, and interactive dashboards from CSV, JSON, or pandas DataFrames using matplotlib and plotly.
Quick Start
agentnode install data-visualizer-packUsage
From packagefrom data_visualizer_pack.tool import run
result = run(
action="visualize_data",
data={
"labels": ["Q1", "Q2", "Q3", "Q4"],
"values": [42000, 58000, 71000, 65000]
},
chart_type="bar",
title="2025 Quarterly Revenue",
x_label="Quarter",
y_label="Revenue (USD)",
output_format="png"
)
print(f"Chart saved to: {result['output_path']}")
print(f"Dimensions: {result['width']}x{result['height']}")Verification
Package installs and imports correctly. runtime checks passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Last verified 18d ago· Runner v2.0.0
Use this when you need to...
- ›Generate quarterly revenue bar charts from CSV sales data
- ›Plot real-time sensor readings as interactive line graphs
- ›Build executive dashboards combining multiple chart types
- ›Create correlation heatmaps from survey response datasets
- ›Export publication-ready scatter plots with trend lines
README
Data Visualizer Pack
Create charts, graphs, and dashboards from data. Generate bar charts, line graphs, scatter plots, heatmaps, and interactive dashboards from CSV, JSON, or pandas DataFrames using matplotlib and plotly.
Quick Start
agentnode install data-visualizer-pack
from data_visualizer_pack.tool import run
result = run(
action="visualize_data",
data={"labels": ["A", "B", "C"], "values": [30, 50, 20]},
chart_type="bar",
title="Sample Chart"
)
print(result["output_path"])
Usage
Line Chart with Multiple Series
result = run(
action="visualize_data",
data={"x": [1, 2, 3, 4, 5], "series": {"CPU": [45, 62, 38, 71, 55], "Memory": [60, 58, 65, 70, 68]}},
chart_type="line",
title="Server Metrics Over Time"
)
Scatter Plot with Trend Line
result = run(
action="visualize_data",
data={"x": [1.2, 2.4, 3.1, 4.5, 5.8], "y": [2.1, 4.0, 5.9, 8.2, 11.0]},
chart_type="scatter",
trend_line=True,
title="Growth Correlation"
)
Interactive Heatmap
result = run(
action="visualize_data",
data={"matrix": [[1, 0.8, 0.3], [0.8, 1, 0.5], [0.3, 0.5, 1]], "labels": ["X", "Y", "Z"]},
chart_type="heatmap",
interactive=True,
output_format="html"
)
API Reference
| Capability | Description |
|---|---|
visualize_data | Generate charts, graphs, dashboards from structured data |
Supported chart types: bar, line, scatter, heatmap, pie, histogram, dashboard
Output formats: png, svg, pdf, html (interactive)
Data inputs: JSON objects, CSV strings, column/row structures
License
MIT
Version History
Capabilities
Permissions
This package declares the following access levels. Review before installing.
agentnode install data-visualizer-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode