我正在试图生成如下的条形图:
# generate the bargraphs based on the `stat_list_prop`
def plot_bargraph_min_error(stat_list_prop, bar_color):
plt.xlabel("Layer")
plt.ylabel('Probability of Producing the Minimal Error')
sns.barplot(x=[x+1 for x in range(7)], y = stat_list_prop, color
我在scipy/numpy中有一个Nx3矩阵,我想用它制作一个三维条形图,其中X和Y轴由矩阵的第一列和第二列的值确定,每个条形的高度是矩阵中的第三列,条形图的数量由N决定。
换句话说,如果"data“是矩阵,那么:
data[:, 0] # values of X-axis
data[:, 1] # values of Y-axis
data[:, 2] # values of each Z-axis bar
每个镜头(数据)都应该有一个条形图
我如何在Matplotlib中做到这一点?
其次,作为它的变体,我如何做同样的事情,但这次直方图将条形图划分为每个X,Y,Z维的N个柱状图?也