I am trying to plot coefficients from different models and I have hard time displaying them. est 1 - est 5 do not have the expmass # crp variable, only expmass. est 6 - est 10 have the interaction term. How can I display them together grouped by dependent variable? Also, how can I organize graphs so they are not all squeezed?
Code:
coefplot (est1, keep(*.expmass) label(Baseline model)) /// (est6), keep(*.expmass#*.crp) label(Including critical period interaction term) xline(0) /// || (est2, keep(*.expmass) label(Baseline model)) /// (est7), keep(*.expmass#*.crp) label(Including critical period interaction term) xline(0) /// || (est3, keep(*.expmass) label(Baseline model)) /// (est8), keep(*.expmass#*.crp) label(Including critical period interaction term) xline(0) /// || (est4, keep(*.expmass) label(Baseline model)) /// (est9), keep(*.expmass#*.crp) label(Including critical period interaction term) xline(0) /// || (est5, keep(*.expmass) label(Baseline model)) /// (est10), keep(*.expmass#*.crp) label(Including critical period interaction term) xline(0) /// bylabels("Trust in Central Government" "Trust in Congress" "Trust in Supreme Court" "Trust in Military" "Trust in Blue House")
Comment