OLS_modeling | R Documentation |
<Delete and Replace>
reg_model( dat_yx, reg_obj, rank = 1, rank_by = c("bic", "rsq", "rss", "adjr2", "cp"), debug = FALSE, ... ) lm_boot(model, y = NA, data = NA, n_boot = 50) many_boots(model, n_range, r_boots = 10, n_clus = 1, lm_boot, ...) reg_multi( y_vars, data, form_y = c("y~.", "y~.*."), n_v_max = 3, n_best = 1, really_big = FALSE, n_clus = 1, ... ) mod_multi(reg_multi_obj, data, ...) pred_multi( mods, data, dat0, id_col, n_clus = 1, clus = NA, out_dir = NULL, se_fit = TRUE, return = FALSE, fix_outliers = T, outlier_fun = function(y0, yhat, yhat_se) { large = yhat > max(y0) * 1.5 small = yhat < 0 yhat[small] = 0 yhat[large] = quantile(y0, 0.99) * 1.5 yhat_se[large] = max(yhat_se[!large & !small]) yhat_se[small] = max(yhat_se[!large & !small]) data.frame(fit = yhat, se_fit = yhat_se) } ) multi_bs(mods, n_boot = 50, n_clus, lm_boot) lm_summary(x, data, resids = FALSE)
dat_yx |
tbd |
reg_obj |
tbd |
rank |
tbd |
rank_by |
tbd |
debug |
tbd |
... |
tbd
|
model |
tbd |
y |
tbd |
data |
tbd |
n_boot |
tbd |
n_range |
tbd |
r_boots |
tbd |
n_clus |
tbd |
lm_boot |
tbd
|
y_vars |
tbd |
form_y |
tbd |
n_v_max |
tbd |
n_best |
tbd |
really_big |
tbd |
reg_multi_obj |
tbd |
mods |
tbd |
dat0 |
tbd |
id_col |
tbd |
clus |
tbd |
out_dir |
tbd |
se_fit |
tbd |
return |
tbd |
fix_outliers |
tbd |
outlier_fun |
tbd
|
x |
tbd |
resids |
tbd |
<Delete and Replace>
Revision History
1.0 | date and revisions.. |
reg_model: lm_boot: many_boots: reg_multi: mod_multi: pred_multi: multi_bs: lm_summary:
Jacob Strunk <Jacob.strunk@dnr.wa.gov>
regsubsets
<Delete and Replace>
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.