I m trying to built a histogram for each item but when I trying to do that , i have only one histogram . This the code I have
for indicateur in indicator["Series Code"]:
filtre_indic=data_sc['Indicator Code']==indicateur
data_test = data_sc.loc[filtre_indic]['2000']
data_test.hist()
Can someone help me