Thiago Curvelo
Thiago Curvelo
> I got feedback from @tcurvelo, who pointed out the lack of documentation. I will work on that when I get a chance, we should definitely not merge without it....
Here is a simple benchmark I did for measuring the runtime. Below is the script I used. It loads a dataset of 100K+ items and prints its HTML representation. I...
This snippet do the job, but it doesn't modify the `df` in-place, AFAIK (`df.style` returns a new `Styler` every time you call it). ``` def make_clickable(val): if isinstance(val, str) and...