熊猫数据透视表不要忽略0

时间:2019-03-16 18:59:45

标签: pandas pivot

我正在构建一个基本的数据透视表。文凭列的数据为1,0数据(是/否)。我写道:

### High school name x # of Diplomas Annually 

pd.pivot_table(df, values='s_lasid', index=['hs_name1'],
               columns=['chrt_grad','diploma'], aggfunc=lambda x: len(x.unique()))

现在,仅计算文凭= 1的位置。如何获取也计算文凭= 0的位置? enter image description here

0 个答案:

没有答案