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: Average when -inrange()-


From   Joseph Monte <[email protected]>
To   statalist <[email protected]>
Subject   st: Average when -inrange()-
Date   Thu, 17 Nov 2011 22:06:27 +0000

Dear Statalisters,

The code below gives me the number of observations (i.e. count1) when
"date2" occurs between two dates - "ninetydaysbefore" and "date1" -
based on "group". I also need the average of another variable called
"price" of the observations that are counted. I am not sure how to
incorporate it within the loop below.

sort group date2
gen count1=.
qui forval i = 1/`=_N'{
    count if group==group[`i'] & inrange(date2,ninetydaysbefore[`i'],date1[`i'])
	replace count1 = r(N) in `i'
	}

I am using Stata 12.

Thanks,

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