Do you mean something like this?
sysuse educ99gdp, clear
set obs 11
replace country = "Total" in 11
qui sum pub
replace pub = r(sum) in 11
qui sum priv
replace priv = r(sum) in 11
generate total = private + public
graph hbar (asis) public private, ///
over(country, sort(total) descending) stack percent ///
title("Spending on tertiary education, by public and private", ///
span pos(11)) subtitle(" ") ///
note("Source: OECD, Education at a Glance 2002",span)
Scott
> -----Original Message-----
> From: [email protected] [mailto:owner-
> [email protected]] On Behalf Of Anna Gueorguieva
> Sent: Thursday, April 20, 2006 8:41 AM
> To: [email protected]
> Subject: st: graph bar, over() total?-- how do I get a bar with total over
> categories?
>
> Dear all,
> I am trying to construct a bar graph over a
> categorical variable with a bar for total over the
> categories.
> E.g. in the following example, I want an extra
> category called "Total" (over the countries listed)
>
> sysuse educ99gdp, clear
> generate total = private + public
> #delimit ;
> graph hbar (asis) public private,
> over(country, sort(total) descending) stack percent
> title("Spending on tertiary education, by public and
> private",
> span pos(11))
> subtitle(" ")
> note("Source: OECD, Education at a Glance 2002",
> span) ;
> #delimit cr
>
> Thank you in advance!
> Anna
> PS. Using Stat8/SE
>
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/