← All notes

Statistical note

What makes a statistical method parametric?

Understanding parameters, distributional models, assumptions, and why parametric does not simply mean normal.

6 min read

A parametric method represents data using a model described by a finite set of parameters. A normal model, for example, is governed by a mean and variance. Parametric does not mean that every raw observation must look perfectly Gaussian.

A parametric family controlled by location and scale

Parameters express the scientific target

The mean can represent an expected intensity, count, or response. A regression coefficient can represent an adjusted change. Variance describes dispersion. The usefulness of a parametric analysis comes from connecting such parameters to a scientific question.

For a normal model,

f(xμ,σ)=1σ2πexp[(xμ)22σ2].f(x\mid\mu,\sigma)=\frac{1}{\sigma\sqrt{2\pi}}\exp\left[-\frac{(x-\mu)^2}{2\sigma^2}\right].

import numpy as np
from scipy import stats

intensity = np.array([91, 95, 97, 102, 105, 108])
mu, sigma = stats.norm.fit(intensity)
log_likelihood = np.sum(stats.norm.logpdf(intensity, loc=mu, scale=sigma))
print(mu, sigma, log_likelihood)

Assumptions belong to the model

Typical assumptions concern independence, the distribution of residuals, variance structure, and the relationship between predictors and outcomes. These should be checked at the level of the fitted model, not through a ritual normality test on every variable.

Why use parametric methods?

When the model is reasonable, parametric estimators are often efficient, interpretable, and extensible. Regression, hierarchical models, and generalized linear models can represent experimental structure more faithfully than a sequence of isolated tests.

The microscopy caution

Cells are frequently nested within images, wells, experiments, or donors. Treating all segmented objects as independent creates pseudoreplication. A hierarchical model or aggregation at the biological-replicate level may be more appropriate than a simple two-sample test.