Hello,
I run into a problem with Stata. I am working on a do-File for hours, everything was working fine. Suddenly, with our changing any code, Stata stopped drawing the same graph it draws 10 times before. There isn't any error message or something. If I new start the program, it works for one time. Trying to repeat the same code is not working. I then tried to add some error manually (e.g. change varname to one that doesn't exist) and noticed that there aren't even error messages. Stata runs the do-file and display 'end of do-file' after it.
Here is some example code:
colorpalette plasma, n(20) nograph reverse
local colors `r(p)'
spmap age_mean using nuts3_shp, ///
id(_ID) cln(10) fcolor("`colors'") ///
ocolor(gs6 ..) osize(0.03 ..) ///
ndfcolor(gs14) ndocolor(gs6 ..) ndsize(0.03 ..) ndlabel("Keine Daten") ///
polygon(data("nuts1_shp") ocolor(black) osize(0.08) legenda(on) legl("NUTS3")) ///
legend(pos(11) size(1.5) symx(2.5) symy(1.5)) legtitle("Age") legstyle(2) ///
I tried to search for help on the internet but couldn't find anything.
I would appreciate any kind of help!
Thanks in advance
KR
I run into a problem with Stata. I am working on a do-File for hours, everything was working fine. Suddenly, with our changing any code, Stata stopped drawing the same graph it draws 10 times before. There isn't any error message or something. If I new start the program, it works for one time. Trying to repeat the same code is not working. I then tried to add some error manually (e.g. change varname to one that doesn't exist) and noticed that there aren't even error messages. Stata runs the do-file and display 'end of do-file' after it.
Here is some example code:
colorpalette plasma, n(20) nograph reverse
local colors `r(p)'
spmap age_mean using nuts3_shp, ///
id(_ID) cln(10) fcolor("`colors'") ///
ocolor(gs6 ..) osize(0.03 ..) ///
ndfcolor(gs14) ndocolor(gs6 ..) ndsize(0.03 ..) ndlabel("Keine Daten") ///
polygon(data("nuts1_shp") ocolor(black) osize(0.08) legenda(on) legl("NUTS3")) ///
legend(pos(11) size(1.5) symx(2.5) symy(1.5)) legtitle("Age") legstyle(2) ///
I tried to search for help on the internet but couldn't find anything.
I would appreciate any kind of help!
Thanks in advance
KR
Comment