Please add an option to skip remove.lindep() #371
Replies: 7 comments
-
Did you already try something like This will set the This is a dangerous option. The setting could crash |
Beta Was this translation helpful? Give feedback.
-
For many such numerical difficulties, the estimation will fall back to ridge regression for at least the default methods. If this happens, the logged events will notify the users about this expected behaviour. |
Beta Was this translation helpful? Give feedback.
-
Thanks, I am not aware of this combination of paramters (did not see the |
Beta Was this translation helpful? Give feedback.
-
It seems that the
that |
Beta Was this translation helpful? Give feedback.
-
I am wondering whether |
Beta Was this translation helpful? Give feedback.
-
# setting eps = 0 bypasses remove.lindep()
if (eps == 0)
return(rep.int(TRUE, ncol(x)))
if (eps < 0)
stop("\n Argument 'eps' must be positive." You should now be able to bypass |
Beta Was this translation helpful? Give feedback.
-
Thanks, I will change my code accordingly |
Beta Was this translation helpful? Give feedback.
-
Please add option to skip the call to
remove.lindep()
in thesampler.univ()
function.I understand it is necessary for most models, but for methods like random-forest-based ones, it may not be necessary.
It causes errors when I do simulations, and I found it impossible to skip it.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions