-
Notifications
You must be signed in to change notification settings - Fork 110
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add an option to skip remove.lindep() #225
Comments
Did you already try something like This will set the This is a dangerous option. The setting could crash |
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. |
Thanks, I am not aware of this combination of paramters (did not see the |
It seems that the
that |
I am wondering whether |
# 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 |
Thanks, I will change my code accordingly |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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.
The text was updated successfully, but these errors were encountered: