Das Bayessches Informationskriterium (BIC) is a criterion used for Modellauswahl among a finite set of models. It is based on the Likelihood-Funktion and penalizes models for their complexity, allowing for a balance between Güte der Anpassung and simplicity. The BIC is particularly useful in contexts where one needs to choose between different statistischer Modelle while considering the number of parameters im Modell dar.
Die Formel zur Berechnung des BIC lautet:
BIC = -2 * log(L) + k * log(n)
Wo:
- L ist der Maximalwert der Likelihood-Funktion des Modells.
- k ist die Anzahl der Parameter im Modell.
- n ist die Anzahl der Datenpunkte.
A lower BIC value indicates a better model when comparing multiple models. The model with the lowest BIC is generally preferred, as it suggests a good fit to the data while being relatively simple. The BIC takes into account the trade-off between the goodness of fit (how well the model explains the data) and the complexity of the model (number of parameters), thus helping to avoid overfitting.
In practice, BIC is widely used in various fields, including economics, biology, and maschinellem Lernen, to determine the most suitable model for a given dataset. Its Bayesian foundation also allows for a probabilistic interpretation of model comparison, enhancing its appeal in statistische Analyse.