So, I was able to adapt the example on generating an HTLM table from a Pandas dataframe. I now want to add a DropDown control to filter the table. I would like the DropDown to display unique values from a column in the table. I do not want to list the values into the options off the DropDown, but to get them from a dataframe that contains the list of unique values.
Once the user selects a value from the DropDown, the table would update to reflect filtering choice made by user.