소스 정보
- 저장소
- lamm-mit/scienceclaw
- 최근 소스 활동
- 2026년 3월 14일 06:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 242
- 포크
- 42
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lamm-mit/scienceclaw --skill datavis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
| name | datavis |
| description | Create scientific plots and visualizations using matplotlib and seaborn |
| metadata | null |
Create publication-quality scientific plots and visualizations using matplotlib and seaborn.
This skill provides data visualization capabilities for scientific data:
python3 {baseDir}/scripts/plot_data.py line --data data.csv --x time --y value --output plot.png
python3 {baseDir}/scripts/plot_data.py scatter --data data.csv --x x_col --y y_col --hue group
python3 {baseDir}/scripts/plot_data.py heatmap --data matrix.csv --output heatmap.png
python3 {baseDir}/scripts/plot_data.py bar --data data.csv --x category --y value
python3 {baseDir}/scripts/plot_data.py line --json '{"x": [1,2,3], "y": [4,5,6]}'
Line plot for continuous data.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--json | JSON data string | - |
--x | X-axis column | Required |
--y | Y-axis column(s), comma-separated | Required |
--hue | Color grouping column | - |
--style | Line style column | - |
--markers | Add markers | False |
Scatter plot for showing relationships.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--x | X-axis column | Required |
--y | Y-axis column | Required |
--hue | Color grouping column | - |
--size | Size column | - |
--alpha | Point transparency | 0.7 |
Bar chart for categorical data.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--x | Category column | Required |
--y | Value column | Required |
--hue | Color grouping column | - |
--horizontal | Horizontal bars | False |
--error | Error bar column | - |
Heatmap for matrix data.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | Required |
--cmap | Color map | viridis |
--annotate | Show values | False |
--cluster | Cluster rows/columns | False |
Box plot for distributions.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--x | Grouping column | - |
--y | Value column | Required |
--hue | Color grouping column | - |
Violin plot for distributions.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--x | Grouping column | - |
--y | Value column | Required |
--hue | Color grouping column | - |
--split | Split violins by hue | False |
Histogram for distributions.
| Parameter | Description | Default |
|---|---|---|
--data | CSV file path | - |
--x | Value column | Required |
--bins | Number of bins | auto |
--kde | Add KDE line | False |
--hue | Color grouping column | - |
| Option | Description | Default |
|---|---|---|
--output | Output file path | plot.png |
--format | Output format: png, svg, pdf | png |
--title | Plot title | - |
--xlabel | X-axis label | column name |
--ylabel | Y-axis label | column name |
--figsize | Figure size (width,height) | 10,6 |
--style | Seaborn style | whitegrid |
--palette | Color palette | deep |
--dpi | Output resolution | 150 |
--legend | Legend position | auto |
--logx | Log scale X-axis | False |
--logy | Log scale Y-axis | False |
python3 {baseDir}/scripts/plot_data.py line --data timeseries.csv --x date --y "temp,humidity" --title "Weather Data" --output weather.png
python3 {baseDir}/scripts/plot_data.py scatter --data experiment.csv --x dose --y response --hue treatment --title "Dose Response" --output dose_response.png
python3 {baseDir}/scripts/plot_data.py heatmap --data expression.csv --cluster --cmap RdBu_r --title "Gene Expression" --output heatmap.svg --format svg
python3 {baseDir}/scripts/plot_data.py box --data measurements.csv --x condition --y value --hue treatment --title "Treatment Effects"
python3 {baseDir}/scripts/plot_data.py histogram --data samples.csv --x measurement --bins 30 --kde --title "Distribution"
python3 {baseDir}/scripts/plot_data.py scatter --data results.csv --x x --y y --figsize 8,6 --dpi 300 --format svg --style white --output figure1.svg
--dpi 300 for high-resolution figures