I am trying to read into Pandas data frame csv file that looks like this: Table with data
I use next code to read the file as precise ass possible (2 different options):
data = pd.read_csv('T0000CH1.CSV', float_precision='high')
data = pd.read_csv('T0000CH1.CSV', engine="c", float_precision="high", dtype=np.float64,)
As I read on StackOverflow it should work, but instead I get rounded values. For example: -0.00199997 -> -0.0020000 What can I do to solve this problem? Thanks in advance