Mean, Median, Mode
Pick mean, median, or mode by the shape of the data, predict which one an outlier drags and which one holds, and read the mean-median gap as a numerical measure of skew.
Variance & Standard Deviation
Square each value's gap from the mean into the variance, square-root it back to a standard deviation in the data's own units, then rescale any value to a mean-zero, standard-deviation-one z-score for feature preprocessing.
Normal Distribution
Pin a bell curve down with just two numbers, a center and a width, apply the 68-95-99.7 rule to turn any standard-deviation band into a percentage of the data, and read a value's percentile by standardizing it onto the single standard normal, then catch where skewed data breaks the rule.
Binomial Distribution
Tally the successes in `n` independent yes/no trials at a constant rate `p`, read the center `np` and spread `√(np(1-p))` straight from those two numbers, and swap in the normal approximation once `np` and `n(1-p)` both clear `10`.
Correlation vs Causation
Average two columns' standardized products into a single number in `[−1, +1]`, test it against Anscombe's quartet to see what one summary hides, then separate cause from reverse cause, a confounder, and coincidence by assigning the treatment at random.
Covariance & Correlation Matrices
Pair two columns' deviations into a covariance, stack every pair into one symmetric matrix built in one line as centered data times its own transpose over n − 1, then read the diagonal as each column's spread and the off-diagonal as the cloud's tilt, and divide out the units for the correlation matrix.