Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: Labels in spmap


From   Alexis Captanian <[email protected]>
To   [email protected]
Subject   Re: st: Labels in spmap
Date   Tue, 17 Dec 2013 08:44:12 -0800

Thank you, Sergiy, David, and Scott. I actually did see those archive
posts when I was searching, but I didn't even realize that that was
what I needed! Many thanks to you for bringing them to my attention!

Best,
Alexis Captanian

On Mon, Dec 16, 2013 at 5:46 PM, Scott Merryman
<[email protected]> wrote:
> Here is an example creating a labels data set that has long region
> names split into two lines.  Take a look at the Friuli-Venezia Giulia
> and Trentino-Alto Adige regions in the north east.
>
> This is adapted from Maurizio Pisati's message:
> http://www.stata.com/statalist/archive/2012-09/msg00817.html
>
>
>  use "Italy-RegionsData.dta", clear
>
>  generate label = region
>
>  keep id xcoord ycoord label
>  gen length = length(label)
>  split label if length > 15
>  replace label1 = label if label1 == ""
>  drop label
>  reshape long label, i(id x y) j(labtype)
>  drop if label == ""
>
>  save "Labels.dta", replace
>
>  use "Italy-RegionsData.dta", clear
>  spmap using "Italy-RegionsCoordinates.dta", id(id) ///
>  label(data("Labels.dta") x(xcoord) y(ycoord) ///
>  label(label)  by(labtype) size(*0.7 ..) position(0 6) length(21))
>
> Scott
>
>
>
>>>> On Mon, Dec 16, 2013 at 5:06 PM, Alexis Captanian
>>> <[email protected]>
>>>> wrote:
>>>> > Hi Statalist,
>>>> >
>>>> > I'm trying to fit labels into regions of a choropleth map, but many
>>> of
>>>> > the labels are spilling out of their respective regions and
>>>> > overlapping with each other. I would like to solve this problem by
>>>> > making some labels appear as two lines, but I do not know how to do
>>>> > this. I'm using spmap in Stata 11.2 on a Mac.
>>>> >
>>>> > For example, instead of:
>>>> >
>>>> > Los Angeles
>>>> >
>>>> > I would like the label to appear:
>>>> >
>>>> > Los
>>>> > Angeles
>>>> >
>>>> > Decreasing the text size did not solve the overlap problem.
>>>> >
>>>> > Any suggestions would be greatly appreciated. I'm new to Stata so I
>>>> > apologize if this is extremely elementary. I searched the archives
>>> and
>>>> > other resources but didn't find an answer.
>>>> >
>>>> > Thank you very much,
>>>> > Alexis Captanian
> *
> *   For searches and help try:
> *   http://www.stata.com/help.cgi?search
> *   http://www.stata.com/support/faqs/resources/statalist-faq/
> *   http://www.ats.ucla.edu/stat/stata/
*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/faqs/resources/statalist-faq/
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index