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
mi
Summary of mi objects will output as if they were complete data.frames. Additionally, this should allow subsetting.
E.g.:
t1 <- turnout[1:1000, ] t2 <- turnout[1001:2000, ] t2 <- turnout[500:1000, ] z <- zelig(vote ~ race + educate, model="logit", data=mi(t1, t2, t3)) # outputs rbind(t1, t2, t3) summary(z) # outputs rbind(t1, t2) summary(z, subset = 1:2)
The text was updated successfully, but these errors were encountered:
whatever
No branches or pull requests
Summary of
mi
objects will output as if they were complete data.frames. Additionally, this should allow subsetting.E.g.:
The text was updated successfully, but these errors were encountered: