Wrong value when creating dataframe

Asked

Viewed 26 times

-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:

inserir a descrição da imagem aqui

inserir a descrição da imagem aqui

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!

1 answer

0

I gave a better study and managed to solve. Thank you and sorry for anything.
I applied:

pd.set_option('display.float_format', '{:.2f}'.format)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.