我正在尝试使用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')
我的问题是,我只收到commentCount
和viewCounts
列而不是4列。 mydata
共包含15列。有什么问题?