为什么在转置数据帧上运行df.max()时会丢失列?

时间:2019-06-24 18:43:05

标签: python pandas transpose

转换数据框以使其更易于执行最小和最大计算

import pandas as pd

marketReportCleanMonthlyData = pd.read_excel('cleanMonthly.xlsx')
marketReportCleanMonthlyData.fillna('', inplace=True)

marketReportCleanMonthlyData.set_index('Labels', inplace=True)
transpose = marketReportCleanMonthlyData.transpose()

cleanMonthlyMax =  transpose.max()

基本上我没有获得第五栏的最大值。 df.max()函数的行为就像它不存在一样,确实存在。

0 个答案:

没有答案