Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | "Lachenbruch, Peter" <Peter.Lachenbruch@oregonstate.edu> |
To | "'statalist@hsphsun2.harvard.edu'" <statalist@hsphsun2.harvard.edu> |
Subject | RE: st: Model visualization |
Date | Fri, 2 Jul 2010 09:15:46 -0700 |
You might also want to add xline(0) for this. Tony Peter A. Lachenbruch Department of Public Health Oregon State University Corvallis, OR 97330 Phone: 541-737-3832 FAX: 541-737-4001 -----Original Message----- From: owner-statalist@hsphsun2.harvard.edu [mailto:owner-statalist@hsphsun2.harvard.edu] On Behalf Of Ulrich Kohler Sent: Friday, July 02, 2010 1:47 AM To: statalist@hsphsun2.harvard.edu Subject: Re: st: Model visualization Am Freitag, den 02.07.2010, 14:42 +0800 schrieb Wincent: > Dear all, is there any command for the figure 9 (page 9) in this file > (http://www.destatis.de/jetspeed/portal/cms/Sites/destatis/Internet/DE/Content/Wissenschaftsforum/Kolloquien/VisualisierungModellierung__Beitrag,property=file.pdf). > > It seems to me a good way to present a regression or glm model in a > compact style in a presentation. > Use -parmest- and -eclplot- for SSC to start with. Here is a minimal example . sysuse auto, clear . reg price mpg i.rep78 trunk . parmest, fast . encode parm, gen(parmid) . eclplot estimate min95 max95 parmid, /// horizontal ylab(1/8, valuelabel angle(0)) To match look & feel of your templatt requires additional play around with options and perhaps the use of the standard -graph twoway- engine. The principle point is to use the resultssets strategy, which has been described by Roger Newson on various occations: -findit resultssets- Uli * * For searches and help try: * http://www.stata.com/help.cgi?search * http://www.stata.com/support/statalist/faq * http://www.ats.ucla.edu/stat/stata/ * * For searches and help try: * http://www.stata.com/help.cgi?search * http://www.stata.com/support/statalist/faq * http://www.ats.ucla.edu/stat/stata/