The selection page has a fairly complex data table to display. I used pandas to build it (and .to_html() to render it) but it takes a lot of time to create. The main reason, I guess, is that the algorithm creates new columns on-the-fly but it implies re-creating the entire dataframe every time.
The selection page has a fairly complex data table to display. I used
pandas
to build it (and.to_html()
to render it) but it takes a lot of time to create. The main reason, I guess, is that the algorithm creates new columns on-the-fly but it implies re-creating the entire dataframe every time.