소스 정보
- 저장소
- Zaoqu-Liu/ScienceClaw
- 최근 소스 활동
- 2026년 3월 6일 16:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 59
- 포크
- 13
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Zaoqu-Liu/ScienceClaw --skill data-analysis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | data-analysis |
| description | Load, analyze, and visualize datasets using pandas with AG Grid display |
Load data files (CSV, XLSX, JSON, Parquet) into the AG Grid viewer, run pandas queries, save results, and generate visualizations.
data_list - List available data files in /workspace/data/data_load - Load a data file into AG Grid (returns markdown preview for context)data_query - Execute pandas operations on loaded data (filter, aggregate, transform)data_save - Save the current DataFrame to a filejupyter_execute - Execute Python code in Jupyter kernel (for plots and complex analysis)update_notebook - Add cells to Jupyter notebookupdate_gallery - Display generated plots in the galleryFor tabular data exploration, use the data tools which provide a spreadsheet-like experience:
data_list to see what's in /workspace/data/data_load to read a file and display in AG Grid
data_query to run pandas operations
df variable contains the loaded dataresult = ... to define outputdata_save to export to CSV/XLSXFor visualization, statistical analysis, or ML, use Jupyter tools:
jupyter_execute running pandas codeupdate_galleryWhen user says: "Analyze this dataset" or "Show me the data"
data_list to find available filesdata_load with the target filedata_query with result = df.describe() for statisticsWhen user says: "Show only rows where X > Y" or "Group by category"
data_query with pandas filter/groupby codeWhen user says: "Export this" or "Save as Excel"
data_save with desired filename and formatWhen user says: "Create a chart" or "Plot the distribution"
jupyter_execute with matplotlib/seaborn codeupdate_galleryresult = df[df['score'] > 90]
result = df.groupby('category').agg({'value': ['mean', 'sum', 'count']}).reset_index()
result = df.sort_values('date', ascending=False)
df['ratio'] = df['value_a'] / df['value_b']
result = df
result = df.describe()
result = df.dropna(subset=['important_column'])