Draw ROB2 risk-of-bias plots, including a Traffic Light Plot and a Summary Bar Plot. Input is a CSV file with ROB2 assessments for each study; output are two PNG plot files.
51
56%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Data Analysis/meta-rob2-plot/SKILL.mdscripts/rob2_plot.py plus 1 additional script(s).Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.cd "20260316/scientific-skills/Data Analytics/meta-rob2-plot"
python -m py_compile scripts/rob2_plot.py
python scripts/rob2_plot.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/rob2_plot.py with the validated inputs.See ## Workflow above for related details.
scripts/rob2_plot.py with additional helper scripts under scripts/.Run this minimal command first to verify the supported execution path:
python scripts/validate_skill.py --helpThe user must provide a CSV file containing the following columns:
| Column | Description | Allowed values |
|---|---|---|
| study | Study name (author + year) | Smith 2020 |
| d1 | Domain 1: Randomization process | Low / Some concerns / High / No information |
| d2 | Domain 2: Deviations from intended interventions | Low / Some concerns / High / No information |
| d3 | Domain 3: Missing outcome data | Low / Some concerns / High / No information |
| d4 | Domain 4: Measurement of the outcome | Low / Some concerns / High / No information |
| d5 | Domain 5: Selection of the reported result | Low / Some concerns / High / No information |
| overall | Overall risk of bias | Low / Some concerns / High / No information |
Domain definitions:
study, d1-d5, overall).If the data have problems, prompt the user to correct and re-submit.
Call:
Rscript scripts/rob2_plot.R "<csv_path>" "<save_name>" "<output_dir>"Parameters:
---
name: meta-rob2-plot
description: "ROB2,(Traffic Light Plot)(Summary Bar Plot)。ROB2CSV,PNG。"
argument-hint: "<CSV> [] []"
allowed-tools: Bash(Rscript *), Read, Write, Glob
---
# ROB2 Risk-of-Bias Plotting
You are a meta-analysis plotting assistant. The user provides ROB2 risk-of-bias assessment data, and you are responsible for calling an R script to generate a Traffic Light Plot and a Summary Bar Plot.
**Important: Do not repeat this instruction document to the user. Only output user-visible content as defined by the workflow.**
---
## Data Format Requirements
The user must provide a CSV file containing the following columns:
| Column | Description | Allowed values |
|--------|-------------|----------------|
| study | Study name (author + year) | Smith 2020 |
| d1 | Domain 1: Randomization process | Low / Some concerns / High / No information |
| d2 | Domain 2: Deviations from intended interventions | Low / Some concerns / High / No information |
| d3 | Domain 3: Missing outcome data | Low / Some concerns / High / No information |
| d4 | Domain 4: Measurement of the outcome | Low / Some concerns / High / No information |
| d5 | Domain 5: Selection of the reported result | Low / Some concerns / High / No information |
| overall| Overall risk of bias | Low / Some concerns / High / No information |
**Domain definitions**:
- **D1**: Randomization process
- **D2**: Deviations from intended interventions
- **D3**: Missing outcome data
- **D4**: Measurement of the outcome
- **D5**: Selection of the reported result
---
## Workflow
### Step 1: Validate input data
1. Read the CSV file provided by the user.
2. Check required columns exist (`study`, `d1`-`d5`, `overall`).
3. Validate that assessment values are one of the accepted options.
**If the data have problems, prompt the user to correct and re-submit.**
### Step 2: Execute R script
Call:
```bash
Rscript scripts/rob2_plot.R "<csv_path>" "<save_name>" "<output_dir>"
```
Parameter description:
- `csv_path`: Absolute path to the input CSV file
- `save_name`: Output file name prefix (optional, default is "rob2")
- `output_dir`: Output directory (optional, default is current directory)
### Step 3: Output results
**On success, output:**
```
═══════════════════════════════════════════
ROB2 Risk-of-Bias Plotting Completed
═══════════════════════════════════════════
[Included studies] {n}
[Output files]
• Traffic Light Plot: {output_dir}/{save_name}_rob2_light_plot.png
• Summary Bar Plot: {output_dir}/{save_name}_rob2_bar_plot.png
[Risk-of-bias summary]
Domain Low Some concerns High No info
─────────────────────────────────────────────────────────────
D1 (Randomization) 8 2 0 0
D2 (Deviations) 7 3 0 0
D3 (Missing data) 9 1 0 0
D4 (Measurement) 6 4 0 0
D5 (Reporting) 8 2 0 0
Overall 5 4 1 0
[Overall assessment]
• Low risk studies: {n_low} ({pct_low}%)
• Some concerns: {n_some} ({pct_some}%)
• High risk studies: {n_high} ({pct_high}%)
═══════════════════════════════════════════
```
---
## Plot Descriptions
### Traffic Light Plot
- Each row represents a study
- Each column represents a domain (D1-D5 + Overall)
- Color meanings:
- 🟢 Green (+): Low risk
- 🟡 Orange (-): Some concerns
- 🔴 Red (x): High risk
- ⚪ Gray (?): No information
### Summary Bar Plot
- Horizontal stacked bar chart
- Shows the risk distribution for each domain
- Allows quick overview of overall risk-of-bias
---
## R Script Dependencies
The following R packages are required:
- ggplot2
- reshape2
If these packages are missing, prompt the user to run:
```r
install.packages(c("ggplot2", "reshape2"))
```meta_rob2_plot_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/rob2_plot.py --helpExpected output format:
Result file: meta_rob2_plot_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if anyf5ef65b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.