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: Accumulated mean and standard deviation
From
Pedro Nakashima <[email protected]>
To
[email protected]
Subject
Re: st: Accumulated mean and standard deviation
Date
Sun, 8 Jan 2012 18:23:09 -0200
Hi guys
Unfortunately, I forgot one important point for my analysis.
Given that I have the same kind of data for several days and I need to
calculate these statistics for each of these days, I have to do
something like "bysort days: 'all those commands' "
Do you know how can I do that?
One more time, best regards
Pedro
2012/1/8 Pedro Nakashima <[email protected]>:
> Perfect!
>
> Thank you Matthew and Sunil!
>
> Best,
> Pedro.
>
> 2012/1/8 Sunil Kumar <[email protected]>:
>> Does this achieve what you want?
>>
>> gen mean=.
>> gen sd=.
>>
>> local k=_N
>> forv i=1/`k' {
>> qui su x in 1/`i'
>> qui replace mean=r(mean) in `i'
>> qui replace sd=r(sd) in `i'
>> }
>>
>> Best,
>> Sunil
>> *
>> * 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/