Hi Michael Stepner, thank you for creating this resource. I am trying create a U.S. state map with the values of the variable I am mapping placed in or near the states (do not need state name, only the value of the variable). Is there a guide to doing that?
The data I am using has 51 values, one for each state + DC, with only three variables: state name, state fips, and the variable of interest. This code produces the graph without the labels:
I believe I need to merge on a file with state coordinates, and use spopt to specify the x and y coordinates, but I wondered if you could point me to any code that does this or an example? Thanks, again.
The data I am using has 51 values, one for each state + DC, with only three variables: state name, state fips, and the variable of interest. This code produces the graph without the labels:
Code:
maptile var, geo(state) geoid(state) fcolor(BuYlRd) nq(6) leg(1)
Comment