Dear all, I have 25 variables and I want to plot line graph.I want the first line to be solid and line color is red.The other 24 lines to be dash and line color are all gs10.
But I get an error "too many arguments".
Many thanks in advance.
But I get an error "too many arguments".
Code:
#d ;
line te te1-te24 time ,lp(solid dash dash dash dash dash dash dash dash dash dash
dash dash dash dash dash dash dash dash dash dash dash dash dash dash)
lc(red gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10
gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10 gs10)
lw(*2) xline(`=tq(2003q4)',lp(dash) lc(black)) yline(0,lp(dash)
lc(black)) ylabel(-0.15(0.05)0.1,angle(h) labs(*0.7) format(%9.1fc)) xtitle("")
tlab(1993q1(4)2008q1,labsize(*0.7)) tscale(range(1993q1 2008q1))
legend(order(1 "Treated" 2 "Controls") ring(0) pos(11) col(1)
region(fcolor(none) lp(blank)));
# d cr
p21(line(color(gs10)) area(linestyle(color(gs10)))): too many arguments
r(103);
Comment