Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: RE: Overlaying an unknown number of line graphs


From   Nick Cox <[email protected]>
To   "'[email protected]'" <[email protected]>
Subject   st: RE: Overlaying an unknown number of line graphs
Date   Wed, 9 Nov 2011 10:58:11 +0000

It's a loop:

local n = whatever 

forval i = 1/`n' { 
	local call `call' (line freq`i' sample`i', sort)  
} 

twoway `call'

You might to suppress the -legend()-. 


Nick 
[email protected] 


-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Colin Robert Angus
Sent: 09 November 2011 10:48
To: [email protected]
Subject: st: Overlaying an unknown number of line graphs

Dear list,

I am writing a do file to take n random samplings from a distribution, 
for a user-inputted value of n.
This file creates variables labelled sample`i' and freq`i' for each 
value of i between 1 and n.
I would like to draw a single line graph with all of the plots of 
sample`i' against freq`i' overlaid on it.
So something like:
twoway (line freq1 sample1, sort) (line freq2 sample2, sort)...(line 
freqn samplen, sort)
But I can't see how to write this without knowing the value of n 
beforehand, and then, if n is large, writing an incredibly long command.
Is there a way to do this within 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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index