You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vimpy/cv_vim.py
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,13 @@ class cv_vim:
18
18
@param measure_type the predictiveness measure to use (for now, one of "r_squared", "auc", "accuracy", "deviance")
19
19
@param V the number of cross-fitting folds (defaults to 5)
20
20
@param pred_func the function that predicts outcome given features
21
+
@param ensemble is pred_func an ensemble (True) or a single function (False, default)
21
22
@param f fitted values from regression of outcome on all features (only used if pred_func is not specified)
22
23
@param r fitted values from regression of outcome on reduced set of features (only used if pred_func is not specified)
23
24
@param folds a list of length 3: outer folds, for hypothesis testing; inner folds based on the outer folds == 1 (for cross-fitting); inner folds based on outer folds == 0 (for cross-fitting)
24
25
@param na_rm remove NAs prior to computing predictiveness? (defaults to False)
0 commit comments