Given multiple cross-validation folds of a logistic regression, and the resulting multiple estimates of each regression coefficient, how should one measure whether or not a predictor (or set of predictors) is/are stable and meaningful based on the regression coefficient(s)? Is this different for linear regression?
|
|
You could treat the regression coefficients resulting from each test fold in the CV as independent observations and then calculate their reliability/stability using intra-class correlation coefficient (ICC) as reported by Shrout & Fleiss. |
||||
|
|
|
I assume you in your cross-validation you divide the data in two parts, a training set and a test set. In one fold you fit a model from the training set and use it to predict the response of the test set, right? This will give you an error rate for the whole model, not for a single predictor. I do not know if it is possible to find p-values for predictors using something like the F-tests used in ordinary linear regression. You can try remove predictors from the model using for example backward or forward selection if that is your aim. You could instead of CV use bootstrap to find a confidence interval for each predictor and then see how stable it is. How many folds do you use in your CV, is it leave-one-out cross-validation? Perhaps more details of what your aim is would help to answer this question. |
|||
|