Hi all,
This is the first time I'm trying to draw maps on stata using "india_st.shp" and "india_st.dbf". I'm using Stata 15.
I used
to create two .dta files
Following this guide I next did
But this is giving me errors
I'm also getting warning
I would greatly appreciate it if someone could help me out here. Thanks
This is the first time I'm trying to draw maps on stata using "india_st.shp" and "india_st.dbf". I'm using Stata 15.
I used
Code:
spshape2dta india_st
Code:
file india_st_shp.dta created file india_st.dta created
Code:
clear . use india_st.dta encode STATE,gen (state) spmap using "india_st_shp.dta", id(state) ocolor(black) osize(vthin)
Code:
command _fr_area_parse_and_log is unrecognized r(199);
system limit exceeded - see manual
Comment