I want to import a text file (forward_extensive.par) that has 12 significant figures but when I use pd.read_csv it only imports 6.
I have tried searching for this question online but I can't fins any reference to changing the precision in pd.
par_path = os.path.join(path, forward_extensive.par) # define path to parameter realisation file
par = pd.read_csv(par_path, sep=r"\s*",index_col=False, header=None, skiprows=1)
I want values to 12 decimal places instead of 6.
Any advice would be much appreciated.