Statalist


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

st: RE: RE: Equivalent to "more" inside a loop


From   "Martin Weiss" <[email protected]>
To   <[email protected]>
Subject   st: RE: RE: Equivalent to "more" inside a loop
Date   Mon, 1 Feb 2010 22:52:53 +0100

<>

Well, it does not seem to prevent Stata from drawing the next graph. I end up with the -scatter- of weight against length, without any chance to intervene:


*******
sysuse auto, clear

foreach var of varlist mpg price weight{
		sc `var' length
		more
}
*******


HTH
Martin


-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Nick Cox
Sent: Montag, 1. Februar 2010 22:45
To: [email protected]
Subject: st: RE: Equivalent to "more" inside a loop

This works fine for me:

. forval i = 1/10 { 
  2.         di "this is statement `i'" 
  3.         more 
  4. }


At each -more- I need to press the bar. 

What doesn't work with your code? 

Nick 
[email protected] 

Thomas Speidel

Is there an option that I can place inside a loop to make Stata stop, let
the user digest the output, and move on after that?
Much like the "more" and set more on/off, where I can press the spacebar
to move on.  This is to be placed inside a loop that generates a sequence
of graphs.  help more and help window manage did not bring me far.

*
*   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/



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