thanks, I tried it and it works for me
For me it was not the variable type that caused this bug, but the fact that cont_nn was a list with a duplicate, i.e. [āsaleElapsedā, āsaleElapsedā]
After removing the duplicate, I could use TabularPandas.
Here is how it can be done:
cont_nn = list(dict.fromkeys(cont_nn))
1 Like