我正在使用fixest
(0.9.0 版),我想在由iplot()
.
library(fixest)
reg1 <- feols(mpg ~ disp + i(carb, ref = 8), data = mtcars)
fdict <- c("2" = "two", "3" = "three")
etable(reg1, dict = fdict)
摘要将值 2 和 3 替换为定义的标签。但是,当我尝试运行以下任何一项时,不会删除任何类别
iplot(reg1, dict = fdict, drop = "two")
iplot(reg1, dict = fdict, drop = "two|three")
iplot(reg1, dict = fdict, drop = "%2")
如何省略所需的类别?