بنقرة واحدة
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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