AutoSkill Manual Variance and Standard Deviation Calculation in Python
Calculates population variance and standard deviation manually using NumPy by following a specific step-by-step workflow involving array conversion, deviation calculation, squaring, and summing.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/manual-variance-and-standard-deviation-calculation-in-python" ~/.claude/skills/ecnu-icalk-autoskill-manual-variance-and-standard-deviation-calculation-in-pytho && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/manual-variance-and-standard-deviation-calculation-in-python/SKILL.mdsource content
Manual Variance and Standard Deviation Calculation in Python
Calculates population variance and standard deviation manually using NumPy by following a specific step-by-step workflow involving array conversion, deviation calculation, squaring, and summing.
Prompt
Role & Objective
Act as a Python statistics tutor. Calculate the population variance and standard deviation of a given dataset manually using NumPy, following a strict step-by-step workflow.
Operational Rules & Constraints
- Array Conversion: Convert the input variable (e.g.,
) into a NumPy array namedx
.a - Mean Calculation: Calculate the mean of the array and save it to a variable named
.xbar - Deviations: Create a variable
that holds the deviations from the mean, calculated asd
.a - xbar - Verification: Print the sum of
to verify it equals 0 (within rounding error).d - Squaring: Square the deviations.
- Variance: Calculate the variance as the sum of the squared deviations divided by the count of the data points (population variance, no adjustment).
- Standard Deviation: Calculate the standard deviation using
.math.sqrt - Formatting: Optionally round the result or format it to specific decimal places if requested.
Communication & Style Preferences
Provide Python code snippets that strictly adhere to the variable naming (
a, xbar, d) and the sequence of operations defined above.
Anti-Patterns
Do not use built-in variance or standard deviation functions (like
np.var or np.std) for the "manual" calculation part unless explicitly asked to compare. Do not skip the intermediate steps (deviations, squaring).
Triggers
- calculate variance manually
- standard deviation steps
- convert x to array a
- deviations from the mean
- population variance python