Closed cmfield closed 5 days ago
I don't think it's currently possible to show row names (or the index column names in pandas terms). If there's a way to do it, please let me know, otherwise I guess this is a feature request!
You could simply add them as the first column of the dataframe. For pandas:
df.reset_index()
Shinylive example
This works, I suppose I can format them to look like the column headers - thanks.
I don't think it's currently possible to show row names (or the index column names in pandas terms). If there's a way to do it, please let me know, otherwise I guess this is a feature request!