转换数据框以使其更易于执行最小和最大计算
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()函数的行为就像它不存在一样,确实存在。