powered by
This function plots the results of a forward search in linear L1 models.
# S3 method for forwardSearch_regL1 plot( x, type.plot = 1:5, squared = FALSE, scaled = FALSE, ylim = NULL, xlim = NULL, th.Res = 2, th.Lev = 0.25, sig.Tst = 2.58, labels.in.plot = TRUE, ... )
No return value, just plots the results of a forward search in linear L1 models.
a "forwardSearch_regL1" object.
select which plots to draw, by default all. Each graph is addressed by an integer:
scaled residuals
minimum deletion residuals
coefficients
statistics
MAE (Mean Absolute Error) values
logical, if TRUE plots squared residuals.
logical, if TRUE plots scaled coefficient estimates.
a two component vector for the min and max of the y axis.
a two component vector for the min and max of the x axis.
numerical, a threshold for labelling the residuals.
numerical, a threshold for labelling the leverages.
numerical, a value (on the scale of the t statistics) used to draw the confidence interval on the plot of the t statistics.
logical, if TRUE units are labelled in the plots when required.
additional arguments.
forwardSearch_regL1 for apply forward search in linear L1 regression model.
forwardSearch_regL1
# \donttest{ # applies the forward search approach to robust analysis in a linear L1 model mod = forwardSearch_regL1(Concentration ~ Age, data = bile) plot(mod, 1) # }
Run the code above in your browser using DataLab