I need to make some bar plot about a dataset that have 600.000 register and only two columns, they just contain numbers. I try to make a plot on streamlit with the CSV proccesed, but the application site is too slow.
Is it 600k rows? I figured that’s what you meant? If yes, that’s a big chunk of data which can cause the lag. You can try aggregating the data or bin them into ranges and also use Streamlit caching.
You can share more info if this does not help in resolving the issue.