after a regression, I am trying to plot only the coefficients of the interaction terms.
I was unable to do this using coefplot Here is a reproducible example and my attempted solutions:
OBS: Apologies for rendition of the code block. I don´t understand why the forum software is collapsing all the code lines into a single line
OBS: I crossposted the question in StackOveflow, here. I this the audiences are somewhat disjunct but noting it here o avoid wasting peoples time.
I was unable to do this using coefplot Here is a reproducible example and my attempted solutions:
Code:
sysuse auto, clear reg price foreign i.turn foreign#i.turn *this plots all coefficients: coefplot, *this drops _cons and foreign but not i.turn coefplot, drop(i.turn _cons foreign ) *variations with keep also do not work coefplot, keep(foreign#i.turn )
OBS: Apologies for rendition of the code block. I don´t understand why the forum software is collapsing all the code lines into a single line
OBS: I crossposted the question in StackOveflow, here. I this the audiences are somewhat disjunct but noting it here o avoid wasting peoples time.
Comment