-
Login or Register
- Log in with
. graph use "C:\Users\Fernando\Desktop\Graph.gph" file C:\Users\Fernando\Desktop\Graph.gph is a new format that this version of Stata does not know how to read r(610);
help undocumented
help _crcslbl viewsource _crcslbl.ado
graph bar (count) , over(foreign) over(rep78) asyvars legend(pos(1) ring(0) col(1)) blabel(total) b1title("`: var label rep78'") yla(, ang(h)) bar(1, lcolor(black) fcolor(cranberry*0.8)) bar(2, lcolor(black) fcolor(blue*0.5))
clear * sysuse auto graph bar (count), over(foreign) over(rep78) ytitle(Frequency)
separate foreign, by(foreign) * Rename the variables to improve labeling on the graph rename (foreign0 foreign1) (Domestic Foreign) * Basic version with default colours etc. graph bar (count) Domestic Foreign, over(rep78) /// title(# of Domestic v Foreign cars by Repair Record) /// ytitle(Frequency) ylab(0(5)30,grid)
Comment