您可以使用Pandas 绘制一个 3D 条形图,如图所示:
设置:
arrays = [[2010, 2010, 2010, 2011, 2011, 2011],['A', 'B', 'C', 'A', 'B', 'C']]
tuples = list(zip(*arrays))
index = pd.MultiIndex.from_tuples(tuples, names=['Year', 'Product'])
df = pd.DataFrame({'Sales': [111, 20, 150, 10, 28, 190]}, index=index)
print (df)
Sales
Year Product
2010 A 111
B 20
C 150
2011 A 10
B 28
C 190
数据整理:
import numpy as np
import pandas as pd
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
# Set plotting style
plt.style.use('seaborn-white')
对出现在“销售”列中的类似条目 (get_group) 进行分组并遍历它们,然后将它们附加到 list。这使用np.hstack 水平堆叠,形成3d 图的z 维度。
L = []
for i, group in df.groupby(level=1)['Sales']:
L.append(group.values)
z = np.hstack(L).ravel()
让 x 和 y 维度上的标签采用多索引数据帧各自级别的唯一值。然后 x 和 y 维度取这些值的范围。
xlabels = df.index.get_level_values('Year').unique()
ylabels = df.index.get_level_values('Product').unique()
x = np.arange(xlabels.shape[0])
y = np.arange(ylabels.shape[0])
使用np.meshgrid从坐标向量返回坐标矩阵
x_M, y_M = np.meshgrid(x, y, copy=False)
3-D 绘图:
fig = plt.figure(figsize=(10, 10))
ax = fig.add_subplot(111, projection='3d')
# Making the intervals in the axes match with their respective entries
ax.w_xaxis.set_ticks(x + 0.5/2.)
ax.w_yaxis.set_ticks(y + 0.5/2.)
# Renaming the ticks as they were before
ax.w_xaxis.set_ticklabels(xlabels)
ax.w_yaxis.set_ticklabels(ylabels)
# Labeling the 3 dimensions
ax.set_xlabel('Year')
ax.set_ylabel('Product')
ax.set_zlabel('Sales')
# Choosing the range of values to be extended in the set colormap
values = np.linspace(0.2, 1., x_M.ravel().shape[0])
# Selecting an appropriate colormap
colors = plt.cm.Spectral(values)
ax.bar3d(x_M.ravel(), y_M.ravel(), z*0, dx=0.5, dy=0.5, dz=z, color=colors)
plt.show()
注意:
如果groupby 对象不平衡,您仍然可以通过unstacking 进行处理
并用 0 填充 Nans,然后将 stacking 填充如下:
df = df_multi_index.unstack().fillna(0).stack()
df_multi_index.unstack 是您的原始多索引数据框。
对于添加到多索引数据框的新值,得到以下图表: