ludwig-liveeo

Results 1 comments of ludwig-liveeo

This is how I work around this issue: ``` Python raw_table = [row.split(",") for row in df.to_csv(header=True, index_label=df.index[0]).split("\n") if row != ""] markdown_table = tabulate(tabular_data=raw_table[1:], headers=raw_table[0], tablefmt="pipe") ```