--------------------------------------------------------------------------------------------------- log: C:\mydocs\MPH\Text\SecondEdition\WebDoFiles\1.3.2.Sepsis.log log type: text opened on: 26 Dec 2007, 20:25:21 . * Examine the Stata data set 1.3.2.Sepsis.dta. Create . * histograms of baseline APACHE scores in treated and . * control patients. . * . use c:\WDDtext\1.3.2.sepsis.dta . describe Contains data from c:\WDDtext\1.3.2.sepsis.dta obs: 455 vars: 2 16 Apr 2002 15:36 size: 5,460 (99.9% of memory free) ------------------------------------------------------------------------------- storage display value variable name type format label variable label ------------------------------------------------------------------------------- treat float %9.0g treatmnt Treatment apache float %9.0g Baseline APACHE Score ------------------------------------------------------------------------------- Sorted by: . list treat apache in 1/3 +--------------------+ | treat apache | |--------------------| 1. | Placebo 27 | 2. | Ibuprofen 14 | 3. | Placebo 33 | +--------------------+ . browse . histogram apache, by(treat) bin(20) percent . log close log: C:\mydocs\MPH\Text\SecondEdition\WebDoFiles\1.3.2.Sepsis.log log type: text closed on: 26 Dec 2007, 20:25:27 -------------------------------------------------------------------------------------------------