I have a series of 33 fixed effects regressions. Each regression has its own unique dependent variable: the cost of different trade product types. Each trade product type has two regressions for two different key independent variables, STC_exp and STC_import.
lval28_exports_tradeonly <- felm(lval28 ~ STC_exp | pair + year | 0 | pair, subset(STC_Data, NoTrade28 == 1))
lval28_imports_tradeonly <- felm(lval28 ~ STC_imp | pair + year | 0 | pair, subset(STC_Data, NoTrade28 == 1))
lval29_exports_tradeonly <- felm(lval29 ~ STC_exp | pair + year | 0 | pair, subset(STC_Data, NoTrade29 == 1))
lval29_imports_tradeonly <- felm(lval29 ~ STC_imp | pair + year | 0 | pair, subset(STC_Data, NoTrade29 == 1))
What I want to do is create a coefficient plot so that the two independent variables for each of the dependent variables either share the same line on the coefficient plot or can be grouped together. I tried doing this with plot_summs in jtools package and some other packages, but I'm not having much success.
I can make each figure individually:
ore <- plot_summs(lval26_imports_tradeonly, lval26_exports_tradeonly, coefs = c("Ore" = "STC_exp", "Ore" = "STC_imp"), model.names = c("STC on importer", "STC on exporter"))
inorganic.chemicals <- plot_summs(lval28_imports_tradeonly, lval28_exports_tradeonly, coefs = c("Inorganic Chemicals" = "STC_exp", "Inorganic Chemicals" = "STC_imp"), model.names = c("STC on importer", "STC on exporter"))
But I would like to be able to combine them in some way. Perhaps the jtools package isn't the right away to go?


