dexplo / dataframe_image

A python package for embedding pandas DataFrames as images into pdf and markdown documents
https://dexplo.org/dataframe_image
MIT License
282 stars 41 forks source link

add index parameter #103

Closed ikeepo closed 1 year ago

ikeepo commented 1 year ago

add the parameter 'index' for export which can be used to disable the index for creating image. It's my first time to pr. I apologize for anything improper.

PaleNeutron commented 1 year ago

Does dfi.export(df.style.hide(axis='index'), "no-index.png") do the same thing?

ikeepo commented 1 year ago

yeah, you are right. It's the first time I know df.style. Thank you for your time