I am trying to change my y axis scale.Indeed, Python puts my numbers into scientific notation. I want to stay with my original numbers.
This is my code:
Data = [['01',  float(18535404.0)],['02', float(3460047.0)], 
        ['03', float(3924627.0)],['04',float(3377404.0)],
        ['05',float(4006194.0)],['06',float(11077562.0)],
        ['07',float(2097105.0)],['08',float(2042300.0)],
        ['09',float(899693.0)],['10',float(7598384.0)],
        ['11',float(998367.0)]] 
# Create the pandas DataFrame
DataFrame3 = pd.DataFrame(Data, columns=['Month', 'Sum'])
# print dataframe.
DataFrame3
plt.bar(DataFrame3['Month'],DataFrame3 ['Sum'] ,color=(0.2, 0.4, 0.6, 0.6))
I would like these numbers on my y axis:
18535404.0,3460047.0,3924627.0;....