2016-07-22 120 views
2

努力想出這一個。我有一個堆疊的條形圖,我試圖用Python/Matplotlib創建,它似乎覆蓋了數據而不是堆疊,產生不同的顏色(即紅色+黃色=橙色,而不是堆疊紅色和黃色)。任何人都可以看到我做錯了什麼?Matplotlib中的堆積條形圖;系列重疊,而不是堆疊

這裏是我的代碼:

#Stacked Bar Char- matplotlib 

#Create the general blog and the "subplots" i.e. the bars 
f, ax1 = plt.subplots(1, figsize=(10,5)) 
# Set the bar width 
bar_width = 0.75 
# positions of the left bar-boundaries 
bar_l = [i+1 for i in range(len(df4['bikes']))] 
# positions of the x-axis ticks (center of the bars as bar labels) 
tick_pos = [i+(bar_width/2) for i in bar_l] 

# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['bikes1'], width=bar_width, label='bikes', alpha=0.5,color='r', align='center') 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['bikes'], width=bar_width,alpha=0.5,color='r', align='center') 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['cats1'], width=bar_width, label='cats', alpha=0.5,color='y', align='center') 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['cats'], width=bar_width,alpha=0.5,color='y', align='center') 

# set the x ticks with names 
plt.xticks(tick_pos, df4['Year']) 
# Set the label and legends 
ax1.set_ylabel("Count") 
ax1.set_xlabel("Year") 
plt.legend(loc='upper left') 
ax1.axhline(y=0, color='k') 
ax1.axvline(x=0, color='k') 


# Set a buffer around the edge 
plt.xlim([min(tick_pos)-bar_width, max(tick_pos)+bar_width]) 
plt.show() 

enter image description here

回答

0

您必須手動計算位置從您的欄將開始(看看我的代碼bottom變量時密謀)。您必須根據數據框中的數據提出自己的方法來計算貓的位置

你的顏色混合,因爲你使用alpha變量,當疊加酒吧則顏色會混合起來:

import matplotlib.pylab as plt 
import numpy as np 
import pandas as pd 

df4 = pd.DataFrame.from_dict({'bikes1':[-1,-2,-3,-4,-5,-3], 'bikes':[10,20,30,15,11,11], 
'cats':[1,2,3,4,5,6], 'cats1':[-6,-5,-4,-3,-2,-1], 'Year': [2012,2013,2014,2015,2016,2017]}) 


#Create the general blog and the "subplots" i.e. the bars 
f, ax1 = plt.subplots(1, figsize=(10,5)) 
# Set the bar width 
bar_width = 0.75 
# positions of the left bar-boundaries 
bar_l = [i+1 for i in range(len(df4['bikes']))] 
# positions of the x-axis ticks (center of the bars as bar labels) 
tick_pos = [i+(bar_width/2) for i in bar_l] 

# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['bikes1'], width=bar_width, label='bikes', alpha=0.5,color='r', align='center') 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['bikes'], width=bar_width,alpha=0.5,color='r', align='center') 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['cats1'], width=bar_width, label='cats', alpha=0.5,color='y', align='center', 
bottom=[min(i,j) for i,j in zip(df4['bikes'],df4['bikes1'])]) 
# Create a bar plot, in position bar_1 
ax1.bar(bar_l, df4['cats'], width=bar_width,alpha=0.5,color='y', align='center', 
bottom=[max(i,j) for i,j in zip(df4['bikes'],df4['bikes1'])]) 


# set the x ticks with names 
plt.xticks(tick_pos, df4['Year']) 
# Set the label and legends 
ax1.set_ylabel("Count") 
ax1.set_xlabel("Year") 
plt.legend(loc='upper left') 
ax1.axhline(y=0, color='k') 
ax1.axvline(x=0, color='k') 

# Set a buffer around the edge 
plt.xlim([min(tick_pos)-bar_width, max(tick_pos)+bar_width]) 
plt.show() 

enter image description here

+0

多謝您的幫助! – NYCTed