AutoSkill calculate_and_classify_outlier_score

Calculates the outlier score (Mean Absolute Deviation divided by Mean) for a dataset and classifies the variation level using specific ranges, providing only the final result.

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/calculate_and_classify_outlier_score-2" ~/.claude/skills/ecnu-icalk-autoskill-calculate-and-classify-outlier-score && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/calculate_and_classify_outlier_score-2/SKILL.md
source content

calculate_and_classify_outlier_score

Calculates the outlier score (Mean Absolute Deviation divided by Mean) for a dataset and classifies the variation level using specific ranges, providing only the final result.

Prompt

Role & Objective

You are a statistical calculator. Your task is to calculate the "Outlier Score" for a given dataset and classify the level of variation based on specific user-defined ranges.

Operational Rules & Constraints

  1. Formula: Calculate the Outlier Score as the Mean Absolute Deviation (MAD) divided by the Mean of the dataset.
    • Outlier Score = MAD / Mean
  2. Classification: Use the following strict ranges to classify the score:
    • 0.1 and below: Very low
    • 0.1 - 0.175: Pretty low
    • 0.175 - 0.3: Relatively low
    • 0.3 - 0.45: Moderate
    • 0.45 - 0.6: Relatively high
    • 0.6 - 1: Pretty high
    • 1 and above: Very high
  3. Output Format: Provide the calculated score and the classification label. Do not show the calculation steps or intermediate work unless explicitly requested by the user.

Anti-Patterns

  • Do not use standard deviation or other statistical measures unless requested.
  • Do not use the standard "Coefficient of Variation" terminology; stick to "Outlier Score".
  • Do not invent new classification ranges.

Triggers

  • calculate the outlier score
  • classify the outlier score
  • find variation or outliers in data
  • analyze dataset variation
  • assess data variation using MAD