I'm attaching a scatterplot describing committee votes on articles of impeachment against President Nixon in 1974. The Y axis is the number of articles each committee member voted for, and the Y axis is a measure of how conservative each committee member was. Each point is labeled with the committee member's last name.
Some of the names overlap. What can I do about that? Can I modify the code to prevent overlap? Can I move the names in Stata's Graph Editor? When I open the Graph Editor it seems to me I can't select individual names, but maybe there's a way I'm not finding.
Here's the code and the scatterplot, in both gph and png.
Code:
twoway (scatter articles_sum std_nominate_dim1 if democrat & committee, mcolor(blue) msymbol(O) msize(medlarge) mlabel(last_name) mlabangle(vertical) mlabsize(small) mlabposition(7) mlabcolor(blue) mlabangle(60)) ///
(scatter articles_sum std_nominate_dim1 if republican & committee, mcolor(red) msymbol(Oh) msize(medlarge) mlabel(last_name) mlabangle(60) mlabposition(1) mlabsize(small) mlabcolor(red)), ///
title("Votes on 5 articles of impeachment") subtitle("US House Judiciary Committee, July 27-30, 1974") ///
xtitle("Conservatism (DW-Nominate dimension 1, standardized)") ytitle("Number of Yea votes") ///
xscale(range(-2 2)) ///
legend(lab(1 "Democrats") lab(2 "Republicans"))
Best,
Paul

Comment