I'm extracting data from my database and trying to write it into a dataframe, but I'm getting scientific notation 0E-8 instead of decimal values in every line :
I've tried :
df_rts24['Displayed quantity'].apply(lambda x: '{:.8f}'.format(x))
df_rts24['Traded quantity'].apply(lambda x: '{:.8f}'.format(x))
But no changes. Any help please?