Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

Re: st: Forvalues & foreach


From   Ulrich Kohler <[email protected]>
To   [email protected]
Subject   Re: st: Forvalues & foreach
Date   Fri, 10 Feb 2006 11:44:58 +0100

Mosca, Ilaria wrote:
> Hi Daniel,
>
> I just tried, but even this does not seem to work.
>
>  forvalues i=2/3 {
>            local min_int "5 10"
>            foreach x of min_int {
>            gen extratime1`i'=time<=`x'
>            gen extratimepop1`i'= extratime1`i'*popperc
>            bys category: table extratimepop1`i',c(sum popperc)
>            }
>  }
>


 forvalues i=2/3 {
            local min_int "5 10"
            foreach x in `min_int' {   // <- Note the "in" and the quotations
              gen extratime1`i'=time<=`x'
              gen extratimepop1`i'= extratime1`i'*popperc
              bys category: table extratimepop1`i',c(sum popperc)
            }
  }


I suspect that this is a artifical example, because it should also work 
without the 2nd line. Did you also thought about -tab, sum()-, which will be 
faster than -table-:

forvalues i=2/3 {
            foreach x in 5 10 { 
                gen extratime1`i' = time <= `x'
                gen extratimepop1`i' = extratime1`i'*popperc
                tab category extratimepop1`i', sum(popperc) means
            }
  }





>
> -----Oorspronkelijk bericht-----
> Van: Daniel Mueller [mailto:[email protected]]
> Verzonden: vrijdag 10 februari 2006 11:07
> Aan: [email protected]
> Onderwerp: Re: st: Forvalues & foreach
>
>
> you miss a second closing bracket '}'
>
> forvalues i=2/3 {
> 	local min_int "5 10"
> 		foreach x of min_int {
> 		<code>
> 	}
> }
> ^
>
> Daniel
>
> Mosca, Ilaria wrote on 2/10/2006 11:00 AM:
> > Dear Statalisters,
> >
> > I am trying to use the commands -forvalues and -foreach simultaneously
> >
> > (I don't know though whether it is feasible). My commands look like
> > this:
> >
> > forvalues i=2/3 {
> > 	local min_int "5 10"
> > 	foreach x of min_int {
> > 	gen extratime1`i'=time<=`x'
> > 	gen extratimepop1`i'= extratime1`i'*popperc
> > 	bys category: table extratimepop1`i',c(sum popperc)
> > }
> >
> > When I run it, I get the following message
> >
> > unexpected end of file
> > r(612);
> >
> > Could you please help me? What am I doing wrong?
> >
> > Many thanks in advance, Ilaria
> >
> > Met inachtneming van eventuele beperkende bepalingen in deze e-mail,
> > mag u deze informatie gebruiken voor het doel waarvoor u die ontvangt.
> >
> > Aan deze gegevens kunnen geen rechten worden ontleend. CTG/ZAio
> > aanvaardt geen aansprakelijkheid voor de juistheid en volledigheid van
> >
> > deze gegevens. Enige schade, ontstaan door de ontvangst of het gebruik
> >
> > van dit e-mailbericht of de informatie daarin, komt voor uw eigen
> > verantwoordelijkheid. Als u een officiele beslissing (besluit,
> > beslissing op bezwaar) van het CTG/ZAio wilt waaraan rechtsgevolgen
> > verbonden zijn is een e-mailbericht onvoldoende. U dient dan een
> > schriftelijke en ondertekende brief of fax te sturen met daarin het
> > verzoek of bezwaar.
> >
> >
> >
> > *
> > *   For searches and help try:
> > *   http://www.stata.com/support/faqs/res/findit.html
> > *   http://www.stata.com/support/statalist/faq
> > *   http://www.ats.ucla.edu/stat/stata/
>
> *
> *   For searches and help try:
> *   http://www.stata.com/support/faqs/res/findit.html
> *   http://www.stata.com/support/statalist/faq
> *   http://www.ats.ucla.edu/stat/stata/
>
> Met inachtneming van eventuele beperkende bepalingen in deze e-mail, mag u
> deze informatie gebruiken voor het doel waarvoor u die ontvangt. Aan deze
> gegevens kunnen geen rechten worden ontleend. CTG/ZAio aanvaardt geen
> aansprakelijkheid voor de juistheid en volledigheid van deze gegevens.
> Enige schade, ontstaan door de ontvangst of het gebruik van dit
> e-mailbericht of de informatie daarin, komt voor uw eigen
> verantwoordelijkheid. Als u een officiele beslissing (besluit, beslissing
> op bezwaar) van het CTG/ZAio wilt waaraan rechtsgevolgen verbonden zijn is
> een e-mailbericht onvoldoende. U dient dan een schriftelijke en
> ondertekende brief of fax te sturen met daarin het verzoek of bezwaar.
>
>
>
> *
> *   For searches and help try:
> *   http://www.stata.com/support/faqs/res/findit.html
> *   http://www.stata.com/support/statalist/faq
> *   http://www.ats.ucla.edu/stat/stata/

-- 
[email protected]
+49 (030) 25491-361
*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   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