agentsclimarketplace

Excel statistical analysis

Skill cxcscmu/SkillLearnBench/skills/b1-one-shot-gemini-3-flash-preview/weighted-gdp-calculation/excel-statistical-analysis

Covers descriptive statistics (mean, median, percentiles) and weighted averages using Excel formulas.From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill excel-statistical-analysis

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

SKILL.md

1.2 KB, 302 tokens by cl100k_base, as published. Nobody here has run it

Excel Statistical Analysis

This skill covers the calculation of descriptive statistics and advanced metrics like weighted means.

Core Functions

1. Descriptive Statistics

  • Mean (Average): =AVERAGE(range)
  • Median: =MEDIAN(range)
  • Min/Max: =MIN(range), =MAX(range)
  • Percentiles: =PERCENTILE.INC(range, 0.25) for 25th percentile, =PERCENTILE.INC(range, 0.75) for 75th percentile.

2. Weighted Mean

The weighted mean uses the SUMPRODUCT and SUM functions: =SUMPRODUCT(values_range, weights_range) / SUM(weights_range)

3. Data Transformation and Rounding

To represent decimals as percentages (e.g., 0.123 as 12.3): =ROUND(value * 100, 1) or =value * 100 if formatting handles the rest.

Usage Pattern

For Net Exports as % of GDP: If Net Exports are in range NX_Range and GDP is in GDP_Range: =ROUND((NX_Value / GDP_Value) * 100, 1)

For Weighted Mean of Percentages: To weight net export percentages by GDP: =ROUND(SUMPRODUCT(percentages_range, weights_range) / SUM(weights_range), 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.