Hi,
I am looking for someone who can help me with the point option of spmap in stata. What elements should be contained in the database for the point option.
I want to represent visually the correlation between two variables (drought and conflicts), one with colors on the geographical territory and the other with points
Should I merge the two databases for the two variables I want to represent?
Here is the code that I enter in stata but it does not work

spmap using "INDDcoo.dta",id(_ID) fcolor(white) ///
point(x(x_coo) y(y_coo) ///
by(conflict) size(*1.2) fcolor(red) ///
ocolor(white...) osize(*0.5...) legenda(on) ///
legcount) ///
legend(pos(4) size(*1.4) rowgap(1.2)) ///

spmap premonsoon15 using "INDDcoo.dta",id(_ID) fcolor(white) ///
point(x(x_coo) y(y_coo) ///
by(conflict) size(*1.2) fcolor(red) ///
ocolor(white...) osize(*0.5...) legenda(on) ///
legcount) ///
legend(pos(4) size(*1.4) rowgap(1.2)) ///

Thks