A statistical model is a family of probability distributions proposed for the process that generated observed data.
A location family has distribution functions , so changing the parameter translates the distribution without changing its shape.
A probabilistic graphical model represents factorization and conditional-independence structure using a graph whose vertices are random variables.
A Markov random field is an undirected graphical model whose graph encodes conditional independence by vertex separation.
A clique potential is a nonnegative function of the variables belonging to one clique. Products of clique potentials define the unnormalized density of a Markov random field.
The global Markov property says that graph separation of vertex sets and by implies conditional independence of the corresponding random vectors given the variables at .
Statistical modelling constructs, fits, checks, and interprets a statistical model for observed data.
Functional data analysis treats each observation as a function or another infinite-dimensional object. Means, covariance operators, spectral coordinates, and regression operators replace their finite-dimensional vector and matrix counterparts.
Functional principal component analysis diagonalizes a compact covariance operator. Its eigenfunctions are principal component functions, and projecting a centered observation onto them gives uncorrelated functional principal component scores.
A principal component function is a normalized eigenfunction of a covariance operator, ordered by decreasing eigenvalue .
The functional principal component score of a centered function along is . Its variance is the corresponding covariance eigenvalue .
The Karhunen–Loève expansion writes a centered square-integrable random function as in mean square, where the are principal component functions and the uncorrelated scores satisfy .
A functional mean test tests whether the mean of a Hilbert-space-valued random variable is zero. The squared-norm statistic has a weighted chi-squared limit under the null, while an FPCA test standardizes and truncates the coordinates.
For covariance eigenpairs , the -coordinate FPCA mean statistic is . Under a zero-mean null and standard estimation conditions, its plug-in version converges to a chi-squared distribution with degrees of freedom.
A covariance-operator distance compares positive trace-class operators while respecting either their linear embedding in operator space or a chosen factorization geometry.
The linear distance between covariance operators is .
The square-root distance is .
For factorizations , the Procrustes distance is , where ranges over unitary operators on the factor space. Equivalently,
A functional linear model relates functional or scalar responses to functional predictors through a linear operator.
A function-on-function linear model has . If the centered error is independent of , then is the regression operator applied to .
For centered Hilbert-space random variables and , the cross-covariance operator is . In the functional linear model with independent centered error, .
Goodness of fit describes how closely a fitted statistical model agrees with the observed data in aspects relevant to the model assumptions.
A goodness-of-fit test compares a discrepancy statistic with its distribution under a fitted null model. A small p-value indicates that the observed discrepancy would be unusual if that model were correct.
A contingency table records counts classified by combinations of categorical variables.
A two-by-two contingency table cross-classifies observations by two binary variables, producing four cell counts and two pairs of marginal totals.
A mixture model represents a population distribution as a weighted combination of component distributions.
A finite mixture model draws each observation from one of finitely many component distributions according to a categorical latent label.
A mixture weight is the probability assigned to one component of a mixture model; all mixture weights are nonnegative and sum to one.
A Dirichlet process mixture model uses a Dirichlet process as a random mixing distribution, allowing the number of occupied mixture components to be inferred from the data.
A latent-variable model represents observed data through unobserved random quantities whose marginalization induces the observed distribution.
Statistical learning constructs predictive rules from data and studies their risk, generalization, and computational fitting.
A validation set is held out from parameter fitting and used to choose models or tuning parameters. A separate test set is then needed for an unbiased final evaluation after selection.
Prediction error is the expected loss of a fitted rule on a new observation from the target distribution.
Test error is the average loss on an independent test set and estimates prediction error when the test set has not influenced model fitting or selection.
For a predictor and an independent response at covariate , mean squared prediction error is .
Training error is the average loss evaluated on the same observations used to fit the prediction rule. Flexible fitting usually makes it optimistically biased for prediction error.
Data leakage occurs when information unavailable at prediction time, including information from nominally held-out observations, influences model fitting or selection. It makes estimated out-of-sample performance optimistically biased.
Dataset shift means that the joint distribution of predictors and responses differs between training and deployment data.
Classification predicts a discrete label from observed covariates.
A decision boundary is the subset of covariate space across which a classifier changes its predicted class.
A majority-vote ensemble predicts the class selected by more constituent classifiers than any other class.
A confusion matrix cross-tabulates true classes against predicted classes. Its diagonal entries count correct predictions and its off-diagonal entries describe the kinds of classification errors.
A classification and regression tree recursively splits covariate space into axis-aligned regions and assigns a constant prediction to each terminal region.
Recursive partitioning repeatedly selects a split of one current region, then applies the same splitting rule independently to the resulting child regions.
For class proportions in a tree node, Gini impurity is . For two classes it is twice ; omitting the constant factor does not change the selected split.
A random forest aggregates deeply grown decision trees fitted to bootstrap samples, while restricting each split to a random subset of predictor coordinates. Classification uses a majority vote over the trees.
The out-of-bag error predicts each training observation using only trees whose bootstrap samples omitted it, then averages the resulting losses.
The conditional class probability for class is
A Bayes classifier selects a class maximizing this probability.
A sequence of classifiers is risk-consistent when its classification risk converges to the Bayes risk as the training sample size tends to infinity.
The K-nearest neighbors algorithm predicts from the labels or responses of the training observations closest to the query under a chosen distance.
The L-nearest-neighbour classifier estimates each class probability by its empirical frequency among the nearest training covariates and predicts a class of greatest estimated probability.
One-nearest-neighbour classification assigns a query the label of its single nearest training observation. Under local regularity, its limiting conditional error is .
For binary classification with posterior estimate , the plug-in classifier satisfies
A support vector machine chooses a separating decision function by trading a wide geometric margin against hinge-loss violations.
For signed observations , an affine hyperplane with score is separating when for every observation.
The slack variables satisfy and quantify margin violations.
For a linear score , the decision boundary is .
For a linear support vector machine, the geometric margin lies between and and has width .
The two margin boundaries of a linear support vector machine are the parallel hyperplanes and .
A support vector is a training observation on or inside the fitted margin; it has a nonzero dual coefficient and can affect the fitted boundary.
The perceptron is an online linear classifier that adds a misclassified observation's signed feature vector to its current parameter vector.
Cross-validation estimates predictive performance by repeatedly fitting on one part of the data and evaluating on held-out observations.
Leave-one-out cross-validation performs one fit with each observation held out in turn and averages the held-out losses.
If a linear smoother has fitted vector , its residual after fitting without observation is
The identity follows from a block matrix inverse or a rank-one inverse update.
K-fold cross-validation partitions observations into folds, trains times while holding out one fold at a time, and combines the held-out losses.
A neural network composes affine maps with nonlinear activation functions and learns their weights from data.
A feedforward neural network composes layers without directed cycles, passing each layer's activations only to later layers.
The rectified linear unit activation is .
The Gaussian error linear unit activation is , where is the standard normal distribution function.
For logits , the softmax probabilities are .
For one-hot label and predicted class probabilities , categorical cross-entropy is , the negative categorical log-likelihood.
Overfitting occurs when further adaptation improves training performance while degrading performance on new data.
Regularization restricts or penalizes model fitting to improve generalization.
Early stopping halts iterative fitting near the best validation performance, limiting adaptation to training noise.
An estimator of a parameter is unbiased when for every parameter value in the model.
The bias of an estimator is
The variance of an estimator is the variance of its sampling distribution under the parameter value .
The asymptotic variance is the variance appearing in the limiting distribution of a suitably rescaled estimator, commonly .
The bias-variance tradeoff describes how increasing model flexibility commonly decreases systematic approximation bias while increasing sampling variance, or conversely how stronger smoothing decreases variance while increasing bias.
Observations or errors are heteroscedastic when their variances are not all equal.
For a model with fitted parameters and maximized likelihood , the Akaike information criterion is
For a normal linear model with known error variance , the scaled Akaike criterion differs by a model-independent constant from
If are independent vectors and is a rank- orthogonal projection, then
The first term is squared approximation bias, while is fitted-model variance and is irreducible new-response noise.
If is the rank- orthogonal projection onto a normal linear model's column space, then
Adding gives , so Mallows' is unbiased for independent-copy prediction error even when the projection model is misspecified.
A shape parameter changes the form of a probability distribution without merely translating it or rescaling its random variable.
A density has sufficient statistic and cumulant function .
In the canonical representation
is the natural parameter and is the natural statistic.
The cumulant function, or log-partition function, is the normalizing term
with a sum in the discrete case.
Differentiating the normalization identity gives
The mean parameter corresponding to the natural parameter is
For an expected value parameter and a shape parameter , the inverse Gaussian distribution has probability density function
Its mean is and its variance is .
The deviance from to is twice the Kullback-Leibler divergence:
For fixed positive integer , the failures-before-the-th-success distribution is a one-parameter exponential family with
and carrier .
With dispersion and known weight , an exponential dispersion density has exponent
Its mean is and its variance is .
The dispersion parameter scales the variance of an exponential dispersion family while leaving its mean function unchanged.
Overdispersion occurs when observed conditional variation exceeds that prescribed by a statistical model. For count data it commonly means variance greater than the mean assumed by a Poisson model.
A generalized linear model takes independent responses from an exponential dispersion family and relates their means to linear predictors by . The response distribution, systematic component, link, dispersion, and known observation weights together specify the model.
The linear predictor of a generalized linear model is the linear combination of the explanatory variables.
Articles were limited to the first 100 out of 249 total.

Articles by others on the same topic (1)

A statistical model is a mathematical representation that embodies the relationships among various variables within a dataset. It is used to analyze data and infer conclusions about underlying patterns, relationships, and behaviors. Here are some key components and concepts associated with statistical models: 1. **Variables**: These are the quantities or attributes being measured or observed. They can be classified into dependent (response) and independent (predictor) variables. 2. **Parameters**: These are the values that define the statistical model.