Candihub / pixel

A content management platform for quantitative omics data :green_book: :bulb:
BSD 3-Clause "New" or "Revised" License
7 stars 3 forks source link

Investigate how to speed up the selection page #248

Closed willdurand closed 6 years ago

willdurand commented 6 years ago

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.

willdurand commented 6 years ago

I think I found an interesting way to speed up the HTML generation.