I've looked at the following question:
Apply multiple functions to multiple groupby columns
and I have data along the lines of
                    p.date p.instrument                p.sector  \
11372  2013-02-15 00:00:00            A             Health Care   
11373  2013-02-15 00:00:00           AA               Materials   
11374  2013-02-15 00:00:00         AAPL  Information Technology   
11375  2013-02-15 00:00:00         ABBV             Health Care   
11376  2013-02-15 00:00:00          ABC             Health Care   
                                p.industry    p.retn  p.pfwt     b.bwt  
11372     Health Care Equipment & Services -5.232929     NaN  0.000832  
11373                             Aluminum  0.328947     NaN  0.000907  
11374                    Computer Hardware -1.373927     NaN  0.031137  
11375                      Pharmaceuticals  2.756020     NaN  0.004738  
11376  Health Care Distribution & Services -0.371179     NaN  0.000859 
but when I try:
test1.groupby("p.sector").agg({'r1': lambda x: x['p.pfwt'].sum()})
I get the error
KeyError: 'r1'
I'm trying to create new columns with a set of results from the current DataFrame.
What am I missing? Thanks
 
     
    