DFBETAs plot data
Prepares the data for dfbetas plot.
ols_prep_dfbeta_data(d, threshold)
d |
A |
threshold |
The threshold for outliers. |
model <- lm(mpg ~ disp + hp + wt + qsec, data = mtcars) dfb <- dfbetas(model) n <- nrow(dfb) threshold <- 2 / sqrt(n) dbetas <- dfb[, 1] df_data <- data.frame(obs = seq_len(n), dbetas = dbetas) ols_prep_dfbeta_data(df_data, threshold)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.