pivot_table()不显示所有值

时间:2015-10-13 11:37:47

标签: python pandas

我正在尝试使用pivot_table()在Python 3中显示一个表。我使用了这段代码:

words = ["health"]
mydata = get_sept_data(words)
print (mydata) 
pd.pivot_table(mydata, values=["commentCount", "dislikeCount","likeCount", "viewCount"], aggfunc='sum',index='Keyword')

我的问题是,我只收到commentCountviewCounts列而不是4列。 mydata共包含15列。有什么问题?

enter image description here

0 个答案:

没有答案