plot
Scatter plot or added variable plot of linear regression model
Description
plot( creates a plot of the linear
regression model mdl)mdl. The plot type depends on the number of
predictor variables.
If
mdlincludes multiple predictor variables,plotcreates an Added Variable Plot for the whole model except the constant (intercept) term, equivalent toplotAdded(mdl).If
mdlincludes a single predictor variable,plotcreates a scatter plot of the data along with a fitted curve and confidence bounds.If
mdldoes not include a predictor,plotcreates a histogram of the residuals, equivalent toplotResiduals(mdl).
returns
graphics objects for the lines or patch in the plot, using any of the input argument
combinations in the previous syntaxes. Use h = plot(___)h to modify the
properties of a specific line or patch after you create the plot. For a list of
properties, see Line Properties and Patch Properties.
Examples
Input Arguments
Output Arguments
More About
Tips
The data cursor displays the values of the selected plot point in a data tip (small text box located next to the data point). The data tip includes the x-axis and y-axis values for the selected point, along with the observation name or number.
Alternative Functionality
A
LinearModelobject provides multiple plotting functions.When creating a model, use
plotAddedto understand the effect of adding or removing a predictor variable.When verifying a model, use
plotDiagnosticsto find questionable data and to understand the effect of each observation. Also, useplotResidualsto analyze the residuals of the model.After fitting a model, use
plotAdjustedResponse,plotPartialDependence, andplotEffectsto understand the effect of a particular predictor. UseplotInteractionto understand the interaction effect between two predictors. Also, useplotSliceto plot slices through the prediction surface.
The
plotfunction creates an added variable plot for the model as a whole (except a constant term) if the model includes multiple terms. UseplotAddedto select particular predictors for an added variable plot.
Extended Capabilities
Version History
Introduced in R2012a



