a quick question, I have data of the following sort:
Ticker _ Date _ Fem Analyst (dummy 1 if true) ___ Variables of that month like beta
AA _ 01/04/2001 _ 1 ___ 0.61
AA _ 05/04/2001 _ 1 ___ 0.62
AA _ 08/04/2001 _ 1 ___ 0.63
AA _ 01/05/2002 _ 1 ___ 0.7
AA _ 04/05/2002 _ 1 ___ 0.71
AA _ 08/07/2002 _ 0 ___ 0.8
AA _ 07/04/2003 _ 1 ___ 0.4
and so on.. What I want to receive is the following:
Ticker _ Date Number of fem analyst Number of Male Analysts _ Total ___Variables
AA _ 04/2001 3 0 _ 3 ___ 0.63
AA _ 05/2002 2 0 _ 2 ___ 0.71
AA _ 07/2002 0 1 _ 1 ___ 0.8
AA _ 04/2003 1 0 _ 1 ___ 0.4
So a counting algorithm that allows me to count the number of female and male analyst for a certain company per month( using dummy variable gender 0 or 1) and deletes all observations for that month except the most recent one (for instance for 08/04/01 this becomes 04/01 with 0.63 which is the most recent observation for beta for 04/01 for company AA) The example explains it all I guess?
Any ideas?