0

我正在使用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")

如何省略所需的类别?

4

1 回答 1

1

这是一个已知的错误,开发人员正在解决这个问题:https ://github.com/lrberge/fixest/issues/164 。

UPD(9 月 21 日):错误已解决!

于 2021-06-25T19:23:08.283 回答