Update Bar_Chart + Récup_mat.py

This commit is contained in:
NicolasBSN 2017-03-01 19:51:06 +01:00 committed by GitHub
parent 8690266e4b
commit ae49920465
1 changed files with 24 additions and 40 deletions

View File

@ -33,65 +33,49 @@ def bar_chart():
matGain=recup_mat(matrice,'annees_de_prison') matGain=recup_mat(matrice,'annees_de_prison')
#initialisation des paramètres #initialisation des paramètres
#list gain
gain=[]
#list strat
strat=[]
strat0=0 for i range (6):
gain[i]=0
strat[i]=0
gain.append(gain[i])
strat.append(strat[i])
strat1=0
strat2=0
strat3=0
strat4=0
strat5=0
gain0=0
gain1=0
gain2=0
gain3=0
gain4=0
gain5=0
for ligne in range (0,TailleGrilleX): for ligne in range (0,TailleGrilleX):
for colonne in range(0, TailleGrilleY): for colonne in range(0, TailleGrilleY):
if matStrat[ligne,colonne]==0: if matStrat[ligne,colonne]==0:
strat0=strat0+1 strat[i]=strat[i]+1
gain0=gain0+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
elif matStrat[ligne,colonne]==1: elif matStrat[ligne,colonne]==1:
strat1=strat1+1 strat[i]=strat[i]+1
gain1=gain1+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
elif matStrat[ligne,colonne]==2: elif matStrat[ligne,colonne]==2:
strat2=strat2+1 strat[i]=strat[i]+1
gain2=gain2+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
elif matStrat[ligne,colonne]==3: elif matStrat[ligne,colonne]==3:
strat3=strat3+1 strat[i]=strat[i]+1
gain3=gain3+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
elif matStrat[ligne,colonne]==4: elif matStrat[ligne,colonne]==4:
strat4=strat4+1 strat[i]=strat[i]+1
gain4=gain4+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
else : else :
strat5=strat5+1 strat[i]=strat[i]+1
gain5=gain5+matGain[ligne,colonne] gain[i]=gain[i]+matGain[ligne,colonne]
Strat=('1','2', '3','4' ,'5','6') Strat=('1','2', '3','4' ,'5','6')
x_pos = np.arange(len(Strat)) x_pos = np.arange(len(Strat))
gain=[gain0,gain1,gain2,gain3,gain4,gain5]
plt.bar(x_pos, gain, align='center', color='b' ) plt.bar(x_pos, gain, align='center', color='b' )