Dear Statalist,
I would like to fix colour for category using spmap. For example, I want to express a certain index
o<ind<0.5 'light blue'
0.5<ind<1 'dark blue'
-0.5<ind<0 'light red'
-1<ind<-0.5 'dark red'
The purpose of doing this is to compare two maps.
Many thanks in advance!
Kind regards,
Sungwook
I would like to fix colour for category using spmap. For example, I want to express a certain index
o<ind<0.5 'light blue'
0.5<ind<1 'dark blue'
-0.5<ind<0 'light red'
-1<ind<-0.5 'dark red'
The purpose of doing this is to compare two maps.
Code:
spmap ind_sar using a_coord, id(stid) legend(position(2)) legtitle("Ind") fcolor(Reds2) ocolor(blue) osize(vthin)
Kind regards,
Sungwook
Comment