... | @@ -71,14 +71,16 @@ In data analysis, this fallacy occurs when researchers fit multiple models or te |
... | @@ -71,14 +71,16 @@ In data analysis, this fallacy occurs when researchers fit multiple models or te |
|
|
|
|
|
Adjusted R² is an alternative to R² that adjusts for the number of predictors in the model. Unlike R², which increases whenever a new predictor is added (even if it doesn’t improve the model), adjusted R² only increases if the new predictor improves the model more than would be expected by chance.
|
|
Adjusted R² is an alternative to R² that adjusts for the number of predictors in the model. Unlike R², which increases whenever a new predictor is added (even if it doesn’t improve the model), adjusted R² only increases if the new predictor improves the model more than would be expected by chance.
|
|
|
|
|
|
<img id="adjustedRsquared" src="../images/formulas/AdjustedRSquared_light.png" alt="Adjusted R² Formula">
|
|
<style>
|
|
|
|
/* Apply dark mode image if GitLab applies dark mode styles */
|
|
<script>
|
|
@media (prefers-color-scheme: dark) {
|
|
// Check if the HTML element has a class for dark mode
|
|
#adjustedRsquared {
|
|
if (document.documentElement.classList.contains('dark')) {
|
|
content: url("../images/formulas/AdjustedRSquared_dark.png");
|
|
document.getElementById('adjustedRsquared').src = "../images/formulas/AdjustedRSquared_dark.png";
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</style>
|
|
|
|
|
|
|
|
<img id="adjustedRsquared" src="../images/formulas/AdjustedRSquared_light.png" alt="Adjusted R² Formula">
|
|
|
|
|
|
|
|
|
|
Where:
|
|
Where:
|
... | | ... | |