I try to read the .out file in excel but it gives me the following typeerror: an integer is required
import pandas as pd
import dyntools
archivoout="OutBDDV33.out"
datosexcel = dyntools.CHNF(archivoout)
datos_excel.xlsout(channels='', show=False)
Worbook1 = 'Out_BDDV33.out.xlsx'
df=pd.read_excel(Worbook1 )
print(df.head())
add a comment