Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

RE: st: RE: graph bar, over() total?-- how do I get a bar with total over categories? --> Thank you!


From   Anna Gueorguieva <[email protected]>
To   [email protected]
Subject   RE: st: RE: graph bar, over() total?-- how do I get a bar with total over categories? --> Thank you!
Date   Thu, 20 Apr 2006 07:56:52 -0700 (PDT)

Dear Scott,
Thank you for your quick response.
This helped tremendously. 
I have weighted categorical data so I collapsed to
sums and followed the procedure with generating an
additional category for total in the over() variable.
Thank you! This is a wonderful resource.
Anna


_____________________________________
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


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index