8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 oc 7CAA casionally send you account related emails.
Already on GitHub? Sign in to your account
In tabmeans.svy there is the code
if (num.groups == 2) { fit <- svyttest(formula, design = design) diffmeans <- -fit$estimate diffmeans.ci <- -rev(as.numeric(fit$conf.int)) p <- fit$p.value } else { fit1 <- svyglm(Age ~ 1, design = design) fit2 <- svyglm(Age ~ Sex, design = design) fit <- do.call(anova, c(list(object = fit1, object2 = fit2), anova.svyglm.list)) p <- as.numeric(fit$p) }
I suspect the else branch was a working example or something?
else
I found this because of a StackOverflow question: https://stackoverflow.com/questions/62213203/issue-with-the-tabmeans-survey-multi-categorical-variables-not-recognising-vari/62239174#62239174
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In tabmeans.svy there is the code
I suspect the
else
branch was a working example or something?I found this because of a StackOverflow question:
https://stackoverflow.com/questions/62213203/issue-with-the-tabmeans-survey-multi-categorical-variables-not-recognising-vari/62239174#62239174
The text was updated successfully, but these errors were encountered: