What problem does it solve?
This Skill simplifies the process of calculating descriptive statistics (mean, standard deviation, median, quantile, z-score normalization, and Pearson correlation) on plain Python number lists without relying on numpy or pandas.
Core Features & Use Cases
- Summary Statistics: Generate a summary report of a dataset with mean, standard deviation, median, minimum, maximum, and more.
- Quantiles: Compute any arbitrary quantile (0-1) from a dataset.
- Normalization: Standardize values with z-score normalization.
- Correlation: Calculate the Pearson correlation coefficient between two datasets.
- Use Case: For a given dataset, quickly compute the mean and standard deviation to understand the central tendency and spread of the data.
Quick Start
Calculate the mean and standard deviation for a list of numbers: mean([4, 8, 15, 16, 23, 42])