원클릭으로
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