Python Forum
Issue in writing sql data into csv for decimal value to scientific notation
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Issue in writing sql data into csv for decimal value to scientific notation
#6
Why is it a problem if the csv file contains 0E-12?

I used pandas to read this csv file that I made for my previous post. This is the csv file I read.
Output:
0.00|0.0012 0.0000|0.000012 0.000000|1.2E-7 0E-8|1.2E-9 0E-10|1.2E-11 0E-12|1.2E-13
This is the program.
import pandas as pd
df = pd.read_csv("test.csv", sep="|", header=None)
print(df)
And this is the data frame it produced.
Output:
0 1 0 0.0 1.200000e-03 1 0.0 1.200000e-05 2 0.0 1.200000e-07 3 0.0 1.200000e-09 4 0.0 1.200000e-11 5 0.0 1.200000e-13
Do you know that values like 0E-12 are going to be a problem, or is it an unfounded assumption?
Reply


Messages In This Thread
RE: Issue in writing sql data into csv for decimal value to scientific notation - by deanhystad - Nov-29-2022, 05:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with writing monitored data to mysql upon change of one particular variable donottrackmymetadata 3 1,596 Apr-18-2024, 09:55 PM
Last Post: deanhystad
  Forcing matplotlib to NOT use scientific notation when graphing sawtooth500 4 5,676 Mar-25-2024, 03:00 AM
Last Post: sawtooth500
  ''.join and start:stop:step notation for lists ringgeest11 2 4,106 Jun-24-2023, 06:09 AM
Last Post: ferdnyc
  issue with converting a scientific notation to standard notation thomaswfirth 4 3,274 Jun-06-2023, 06:06 PM
Last Post: rajeshgk
  notation MCL169 8 3,391 Apr-14-2023, 12:06 PM
Last Post: MCL169
  Create a function for writing to SQL data to csv mg24 4 2,724 Oct-01-2022, 04:30 AM
Last Post: mg24
  Issue in changing data format (2 bytes) into a 16 bit data. GiggsB 11 5,360 Jul-25-2022, 03:19 PM
Last Post: deanhystad
  Need Help writing data into Excel format ajitnayak87 8 4,306 Feb-04-2022, 03:00 AM
Last Post: Jeff_t
  Python issue - Data science - Help is needed yovel 2 2,906 Jul-29-2021, 04:27 PM
Last Post: yovel
  Fastest Way of Writing/Reading Data JamesA 1 3,057 Jul-27-2021, 03:52 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020