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]

Re: st: foreach with string


From   "Fabian Schönenberger" <[email protected]>
To   [email protected]
Subject   Re: st: foreach with string
Date   Thu, 02 Aug 2012 19:44:46 +0200

Dear Daniel

Unfortunately, still the same error message: 

. levelsof SIZEBM,local(levels)
`"BH"' `"BL"' `"BM"' `"SH"' `"SL"' `"SM"'

. foreach l of local levels {
  2. egen meanwreturn_`l'=wtmean(trt1m) if SIZEBM=="`l'",weight(size) by(datemt)
  3. }

BH not found


Other ideas?

-------- Original-Nachricht --------
> Datum: Thu, 2 Aug 2012 19:36:47 +0200
> Von: daniel klein <[email protected]>
> An: [email protected]
> Betreff: Re: st: foreach with string

> Fabian,
> 
> change
> 
> egen meanwreturn_`l'=wtmean(trt1m) if SIZEBM==`l',weight(size) by(datemt)
> 
> to read
> 
> egen meanwreturn_`l'=wtmean(trt1m) if SIZEBM=="`l'",weight(size)
> by(datemt)
> 
> Best
> Daniel
> 
> -- 
> Dear Statalist
> 
> I have problems with the following commands:
> 
> levelsof SIZEBM,local(levels)
> `"BH"' `"BL"' `"BM"' `"SH"' `"SL"' `"SM"'
> 
> foreach l of local levels {
>  egen meanwreturn_`l'=wtmean(trt1m) if SIZEBM==`l',weight(size) by(datemt)
>  }
> 
> BH not found
> r(111);
> 
> wtmean is from SSC (David Kantor) to generate weighted mean. SIZEBM is
> a string variable. The aim is to calculate the size-weighted return
> for the different portfolios SIZEBM.
> 
> Any suggestions?
> *
> *   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–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index