Hello,
I'm working with a dataset for which I want to create a graph with 4 quadrants. I have two variables I am plotting against each other: dissent which is a 1 or -1 and an unemployment rate gap. I am able to use the sepscatter package but the marker labels are only displayed on the first group. The marker labels return when I do not split the observations into groups. Is there a way to get my marker labels to display with the shapes of sepscatter?
Here is the Stata code that I am using:

Thanks in advance
I'm working with a dataset for which I want to create a graph with 4 quadrants. I have two variables I am plotting against each other: dissent which is a 1 or -1 and an unemployment rate gap. I am able to use the sepscatter package but the marker labels are only displayed on the first group. The marker labels return when I do not split the observations into groups. Is there a way to get my marker labels to display with the shapes of sepscatter?
Here is the Stata code that I am using:
Code:
*************** QUADRANTS GRAPH **************************** gen u_diff = u_rate - UNRATE g dissent_jit = dissent + rnormal(0, 0.1) g qdate = qofd(FOMCMeeting) format qdate %tq sepscatter dissent_jit u_diff if dissent != 0 & year > 2002, sep(district) /// mlabsize(tiny) mlabel(qdate)
Thanks in advance
Comment