Skew / Aggregation Layer

Calculate skewness across specified columns, similar to scipy.stats.skew or pandas skew(). Measures the asymmetry of data distribution around its mean.

Mathematical form: Where:

  • is the mean
  • is the standard deviation
  • is the number of observations

Interpretation:

  • Positive skew: Long right tail (mean > median)
  • Negative skew: Long left tail (mean < median)
  • Zero skew: Symmetric distribution

Common applications:

  • Financial return analysis
  • Process control monitoring
  • Medical outcome distributions
  • Environmental data analysis
  • Population demographics
  • Response time studies

Provides a simpler interface for single-column skewness analysis.

Table
0
0
Table

Select

[column, ...]

Numeric columns to analyze. Each selected column must contain numeric data suitable for skewness calculation. Non-numeric columns will result in null values.

Bias

bool
true

Controls bias correction in calculation:

  • true (default): Use biased moment estimators
  • false: Apply bias correction for small samples

Bias correction affects accuracy in small samples but increases variance.