agentsclimarketplace

Run2 excel stats

Skill cxcscmu/SkillLearnBench/skills/b2-self-feedback-gemini-3-flash-preview/weighted-gdp-calculation/run2_excel-stats

Using Excel's statistical functions with rounding and percentage scaling in openpyxl.From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill run2_excel-stats

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.0 KB, 245 tokens by cl100k_base, as published. Nobody here has run it

Statistical Calculations with Rounding

Common Excel statistical functions used for data analysis:

  • Min/Max: =MIN(range), =MAX(range)
  • Median/Mean: =MEDIAN(range), =AVERAGE(range)
  • Percentiles: Use =PERCENTILE(range, alpha) for broad compatibility (where alpha is 0.25 for 25th, etc.).

Rounding and Scaling to Percentages

If the requirement is to display percentages as whole numbers with one decimal place (e.g., 12.3 rather than 0.123):

  1. Calculate the ratio: (Numerator / Denominator).
  2. Multiply by 100: ratio * 100.
  3. Round the result: ROUND(result, 1).

=ROUND((Exports - Imports) / GDP * 100, 1)

Consistent Formula Application

  • Ensure statistics are computed over the correct data range (e.g., H35:H40 for each year).
  • If statistics themselves are percentages, ensure they are also rounded as per user instructions.

=ROUND(AVERAGE(H35:H40), 1)

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.