ワンクリックで
data-analysis
Skill for data analysis and visualization using Python
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Skill for data analysis and visualization using Python
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
For writing and executing SQL queries - from simple single-table queries to complex multi-table JOINs and aggregations
Skill for processing and extracting content from PDF files
An example skill demonstrating how to use the skill system
| name | data-analysis |
| description | Skill for data analysis and visualization using Python |
This skill provides guidance and tools for data analysis and visualization tasks using Python.
This skill includes Python code snippets and scripts for common data analysis tasks:
Use execute_script to run the statistics script:
python /nfs/FM/gongoubo/new_project/Agent-Handbook/mini-agents/Mini_Agents/skills/data-analysis/scripts/basic_stats.py
Use execute_script to run the visualization script:
python /nfs/FM/gongoubo/new_project/Agent-Handbook/mini-agents/Mini_Agents/skills/data-analysis/scripts/visualization.py
For quick analysis, use execute_code with inline Python code:
import numpy as np
import pandas as pd
# Create sample data
data = np.random.randn(100)
print(f"Mean: {np.mean(data):.2f}")
print(f"Std: {np.std(data):.2f}")
print(f"Min: {np.min(data):.2f}")
print(f"Max: {np.max(data):.2f}")
Use execute_code tool:
data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
mean = sum(data) / len(data)
print(f"Mean: {mean}")
Use execute_code tool:
import pandas as pd
# Load data from CSV
df = pd.read_csv('data.csv')
# Display basic info
print(df.info())
print(df.describe())
# Calculate correlations
print(df.corr())
Use execute_code tool:
import matplotlib.pyplot as plt
import numpy as np
# Create sample data
x = np.linspace(0, 10, 100)
y = np.sin(x)
# Create plot
plt.figure(figsize=(10, 6))
plt.plot(x, y, label='sin(x)')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Sine Wave')
plt.legend()
plt.grid(True)
plt.savefig('plot.png')
print("Plot saved to plot.png")
execute_code for quick, one-off analysesexecute_script for complex, reusable scriptsInstall with: pip install numpy pandas matplotlib scipy