We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
svyglm does not work because of minor code error.
svyglm
In RegParallel.R file, at line 175, there is a minor error: the option 'svyglm' is missing in:
if (!any((FUNtype %in% c('glm', 'lm', 'coxph', 'clogit', 'bayesglm')) == TRUE)) {
I request that this be corrected to include 'svyglm':
if (!any((FUNtype %in% c('glm', 'lm', 'coxph', 'clogit', 'bayesglm', 'svyglm')) == TRUE)) {
As otherwise the function stops here when FUNtype is specified as svyglm and RegParallel can actually take it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
svyglm
does not work because of minor code error.In RegParallel.R file, at line 175, there is a minor error: the option 'svyglm' is missing in:
I request that this be corrected to include 'svyglm':
As otherwise the function stops here when FUNtype is specified as svyglm and RegParallel can actually take it.
The text was updated successfully, but these errors were encountered: