Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | Christina Wei <christinaw1211@gmail.com> |
To | statalist@hsphsun2.harvard.edu |
Subject | Re: st: Graphs display on a page |
Date | Wed, 6 Nov 2013 12:01:38 -0500 |
Assuming you want to break down item_id into 9 groups (assuming no id duplicates and you are okay with sorting your groups by low to high) here is what I would do: xtile item_id_groups = item_id, nq(9) twoway scatter scatter avg_price quote_date, by(item_id_groups). That should give you the 3x3 plot you are looking for. Hope this helps. ~Christina On Wed, Nov 6, 2013 at 11:14 AM, Tetsuji Tanaka <tetsujitanaka.w@gmail.com> wrote: > Dear all, > > I am struggling for making some graphs on one page. > The command programmed is as follows. > > twoway(scatter ave_price quote_date), by(item_id) > > I know this is a right description to do that, but "item_id" has too > many items (around 2000) to display graphs. > So, I want to limit the number of it, let's say 9 (3x3). > > Could someone give me hints on how to do it? > > TJ > * > * For searches and help try: > * http://www.stata.com/help.cgi?search > * http://www.stata.com/support/faqs/resources/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/faqs/resources/statalist-faq/ * http://www.ats.ucla.edu/stat/stata/