I made program that takes csv files and count mean values. I try to make interface in streamlit. I try to use solution from my program
data = st.file_uploader("Wybierz pliki CSV:",type = 'csv', accept_multiple_files=True)
for file in data:
Table = pd.read_csv(file, sep=',')
DF1 = pd.DataFrame(Table)
DFL = pd.concat([DFL,DF1], sort=False)
When i try to print this using st.dataframe(DFL)
I get this error:
StreamlitAPIException: ("Could not convert '06028001018' with type str: tried to convert to int64", 'Conversion failed for column LPROS1 with type object')
Anyone know how to concat it ?