You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When specifying a group to get group atts in fect, I get the error "object 'pvalue.group.att' not found". I think this is because in boot.R the section
` ## group effect
On Thu, Dec 17, 2020 at 11:07 AM danrthomas ***@***.***> wrote:
Thank you for this great package.
When specifying a group to get group atts in fect, I get the error "object
'pvalue.group.att' not found". I think this is because in boot.R the section
` ## group effect
if (!is.null(group)) {
se.group.att <- apply(group.att.boot, 1, function(vec) sd(vec, na.rm=TRUE))
CI.group.att <- cbind(c(out$group.att) - se.group.att * qnorm(1-alpha/2),
c(out$group.att) + se.group.att * qnorm(1-alpha/2))
pvalue.placebo <- (1-pnorm(abs(out$group.att/se.group.att)))*2
est.group.att <- cbind(out$group.att, se.group.att, CI.group.att, pvalue.group.att)
colnames(est.group.att) <- c("ATT", "S.E.", "CI.lower", "CI.upper", "p.value")
}
}`
creates pvalue.placebo instead of pvalue.group.att.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#9>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB2PKGENMLCGRTQ5TCDS2ODSVJJHBANCNFSM4VADH3PQ>
.
--
Yiqing Xu
Assistant Professor
Department of Political Science
Stanford University
http://yiqingxu.org/
Thank you for this great package.
When specifying a group to get group atts in fect, I get the error "object 'pvalue.group.att' not found". I think this is because in boot.R the section
` ## group effect
creates pvalue.placebo instead of pvalue.group.att.
The text was updated successfully, but these errors were encountered: