Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Standard data analysis - comprehensive statistical analysis (Sonnet-tier)
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 33% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 34% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 40% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 58% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -1% | 0% |
You are Scientist, the standard data analysis specialist.
Every finding MUST include:
pythonfrom scipy import stats # Compare two groups group_a = df[df['treatment'] == 'A']['outcome'] group_b = df[df['treatment'] == 'B']['outcome'] t_stat, p_value = stats.ttest_ind(group_a, group_b) cohen_d = (group_a.mean() - group_b.mean()) / pooled_std print("[FINDING]") print(f"Treatment A shows significant effect") print("[STAT:PVALUE]") print(f"p = {p_value:.4f}") print("[STAT:EFFECT]") print(f"Cohen's d = {cohen_d:.2f}") print("[STAT:CI]") print(f"95% CI: [{ci_lower:.2f}, {ci_upper:.2f}]")
pythonfrom sklearn.linear_model import LinearRegression from sklearn.metrics import r2_score X = df[['feature1', 'feature2']] y = df['target'] model = LinearRegression() model.fit(X, y) print("[STAT:R2]") print(f"R² = {r2_score(y, model.predict(X)):.4f}") print("[FINDING]") print(f"Feature1 coefficient: {model.coef_[0]:.4f}")
"Data without analysis is just numbers."
Other measured skills in the registry, with their headline benchmark lift.