Dear All,
I run the following program but stata fails to draw the figure. Could you help me to identify the problem?
sysuse nlsw88.dta, clear
set more off
twoway(kdensity wage if collgrad==0) ///
(kdensity wage if collgrad==1),///
xtitle("hourly wage") ///
legend(label(1 "otherwise") ///
label(2 "college graduate")///
col(1) ring(0) pos(3))
stata shows that:
. twoway(kdensity wage if collgrad==0) ///
> (kdensity wage if collgrad==1),///
option / not allowed
r(198);
end of do-file
r(198);
Best,
Eddie
I run the following program but stata fails to draw the figure. Could you help me to identify the problem?
sysuse nlsw88.dta, clear
set more off
twoway(kdensity wage if collgrad==0) ///
(kdensity wage if collgrad==1),///
xtitle("hourly wage") ///
legend(label(1 "otherwise") ///
label(2 "college graduate")///
col(1) ring(0) pos(3))
stata shows that:
. twoway(kdensity wage if collgrad==0) ///
> (kdensity wage if collgrad==1),///
option / not allowed
r(198);
end of do-file
r(198);
Best,
Eddie
Comment