I want to use pandas dataFrames with dataTables. I cannot figure out how to initialize the table without an id.
Is there any way to set the id in the table tag w
I took a sligthly different approach and decided to initialize by CSS class which had the benefit that all the pandas tables became DataTables. You can add another class if you want a more refined control with different options
$(document).ready(function(){ $('.dataframe').DataTable(); });