-1
I’m looking to create a dataframe with 2 columns - meses
and valor
. Only the values of the value column are coming wrong. Showing step by step what I am doing:
Sum the total of each month of other files:
janeiro = round(sum(lic01.Valor_Licitação), 2)
fevereiro = round(sum(lic02.Valor_Licitação), 2)
março = round(sum(lic03.Valor_Licitação), 2)
abril = round(sum(lic04.Valor_Licitação), 2)
maio = round(sum(lic05.Valor_Licitação), 2)
junho = round(sum(lic06.Valor_Licitação), 2)
julho = round(sum(lic07.Valor_Licitação), 2)
agosto = round(sum(lic08.Valor_Licitação), 2)
And with it I create a new dataframe:
meses = pd.DataFrame({'Meses' : ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto'], 'Valor':[janeiro, fevereiro, março, abril, maio, junho, julho, agosto]})
meses.to_csv=()
And the dataframe looks like this:
How can I resolve this so that the values are presented correctly?
Guilherme, good afternoon! Your numbers are being presented in scientific notation. Is there any way to make the dataset available? Hug!
– lmonferrari