Regression - Diagnostic - Plot - Residuals vs Fitted extension

From Q
Jump to navigation Jump to search


A chart of residual versus fitted values from a regression model. See this Cross Validated post for a discussion of the interpretation of this diagnostic.

Example

An example output from running this QScript on a Regression - Linear Regressionlinear regression output is shown below.

Acknowledgements

Uses the plot.lm or plot.glm function from the stats R package.

References

Bock, T. (2018, August 3) What are Residuals? [Blog post]. Accessed from https://www.displayr.com/learn-what-are-residuals/.

Code

var __webpack_modules__ = ({});
// The module cache
var __webpack_module_cache__ = {};

// The require function
function __webpack_require__(moduleId) {

// Check if module is in cache
var cachedModule = __webpack_module_cache__[moduleId];
if (cachedModule !== undefined) {
return cachedModule.exports;
}
// Create a new module (and put it into the cache)
var module = (__webpack_module_cache__[moduleId] = {
exports: {}
});
// Execute the module function
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);

// Return the exports of the module
return module.exports;

}

// webpack/runtime/rspack_version
(() => {
__webpack_require__.rv = () => ("1.7.2")
})();
// webpack/runtime/rspack_unique_id
(() => {
__webpack_require__.ruid = "bundler=rspack@1.7.2";
})();
includeWeb("QScript R Output Functions");

const menu_location = "Regression > Diagnostic > Plot > Residuals vs Fitted";
errorIfExtensionsUnavailableInQVersion(menu_location);
createDiagnosticROutputFromSelection(menu_location);