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
boottest does not throw an error when no cluster variable is specified.
Instead, it continues to control for ~var1 + var2 as fixed effects.
If a cluster variable is specified, the following error pops up:
library(fixest)
library(fwildclusterboot)
packageVersion("fwildclusterboot")
base=iris
names(base) = c("y", paste0("x", 1:3), "fe1")
# Create another "fixed-effect"base$fe2= rep(letters[1:5], 30)
head(base)
est_vs= feols(y~x1|fe2[[x2]], base, cluster="fe1")
# Error in fe2[[x2]] : # attempt to select more than one element in vectorIndex
Hence not as critical as I had feared - only the heteroskedastic bootstrap is affected - but still not great.
The text was updated successfully, but these errors were encountered:
E.g. for models as
boottest does not throw an error when no cluster variable is specified.
Instead, it continues to control for
~var1 + var2
as fixed effects.If a cluster variable is specified, the following error pops up:
Hence not as critical as I had feared - only the heteroskedastic bootstrap is affected - but still not great.
The text was updated successfully, but these errors were encountered: