python,pandas,按组自相关

时间:2018-06-28 13:10:46

标签: python pandas

       fips  year        sc 
0       1001  1990 -0.707465
1       1001  1991 -0.707465
2       1001  1992 -0.707465
3       1001  1993 -0.707465
4       1001  1994 -0.707465
5       1001  1995 -0.707465
6       1002  1996 -0.707465
7       1002  1997 -0.607672
8       1002  1998 -0.607672
9       1002  1999 -0.607672
10      1002  2000 -0.607672
11      1002  2001 -0.607672
12      1002  2002 -0.607672 

我想按一组fips计算sc变量的自相关。我尝试了代码:

test=sc_itpl.groupby('fips')['sc'].autocorr(lag=1)

我得到了错误:

  

AttributeError:无法访问的可调用属性'autocorr'   'SeriesGroupBy'对象,请尝试使用'apply'方法

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用GroupBy.apply

test=sc_itpl.groupby('fips')['sc'].apply(lambda x: x.autocorr(lag=1))