I have a csv which has a column that contains a long "ID" string such as 9075841942209708806(int64). Now, when I read this csv file into a pandas data frame, this number turns into -9.191700e+18(float64).
How can the id of -9.191700e+18(float64) be converted in its original form, i.e. 9075841942209708806(int64)?
df = pd.read_csv(file, dtype={'ID':np.int64})df = pd.read_csv(file, dtype={1:np.int64}, header=None)?df = pd.read_csv(file, dtype={1:'str'}, header=None)