交叉表是用于统计分组频率的特殊透视表,crosstab()可以处理分类数据。它可用于将两个或多个变量分组,并为每组的给定值执行计算
    透视表就是将指定原有DataFrame的列分别作为行索引和列索引,然后对指定的列应用聚集函数(默认情况下式mean函数)。


    1. import numpy as np
    2. import pandas as pd
    3. import seaborn as sns
    4. import matplotlib.pyplot as plt
    5. """
    6. 1:透视表(pivotTab)
    7. 透视表是将原有的DataFrame的列分别作为行索引和列索引,然后对指定的列应用聚集函数
    8. """
    9. df = pd.DataFrame({'类别':['水果','水果','水果','蔬菜','蔬菜','肉类','肉类'],
    10. '产地':['美国','中国','中国','中国','新西兰','新西兰','美国'],
    11. '水果':['苹果','梨','草莓','番茄','黄瓜','羊肉','牛肉'],
    12. '数量':[5,5,9,3,2,10,8],
    13. '价格':[5,5,10,3,3,13,20]})
    14. df1=df.pivot_table(index=['产地','类别'])
    15. print(df)
    16. print(df1)
    17. #行索引为"产地",列索引为'类别'
    18. #对“价格”应用'max',并提供分项统计,缺失值填充0
    19. df3=df.pivot_table('价格',index='产地',columns='类别',aggfunc='max',margins=True,fill_value=0)
    20. print(df3)
    21. print("*******************交叉表的信息******************************")
    22. """
    23. 交叉表
    24. 用于统计分组频率的特殊透视表
    25. """
    26. df4=pd.crosstab(df['类别'],df['产地'],margins=True)
    27. print(df4)
    28. sns.heatmap(df4, cmap='rocket_r', annot=True, fmt='g')
    29. def plot_heatmap(cross_table, fmt='g'):
    30. fig, ax = plt.subplots(figsize=(8, 5))
    31. sns.heatmap(cross_table,
    32. annot=True,
    33. fmt=fmt,
    34. cmap='rocket_r',
    35. linewidths=.5,
    36. ax=ax)
    37. plt.show();
    38. plot_heatmap(df4, fmt='.2%')

    image.png

    image.png

    image.png

    image.png

    image.png
    image.png