dataframe_image icon indicating copy to clipboard operation
dataframe_image copied to clipboard

A python package for embedding pandas DataFrames as images into pdf and markdown documents

Results 39 dataframe_image issues
Sort by recently updated
recently updated
newest added

Trying to convert a notebook to pdf, `.convert` raises a `NoSuchKernel` exception. I'm inside a conda environment, so I don't have any Python bound to `python3`. Steps to reproduce: ```python...

**OS**: Windows 11 Home **OS Version**: 23H2 **Python**: 3.9.18 **Chrome installed**: No **Brave installed**: Yes **Description**: - dataframe_image returns error: _FileNotFoundError: [WinError 2] The system cannot find the file specified_...

Hi, I created a table with a style and I tried to export in png with the conversion = 'matplotlib'. Unfortunately, I do not see the style in my png....

bug
matplotlib

table_conversion='matplotlib' does not allow processing text-align it only allows text-align styles given in the very element like ``, `` (`matplotlib_table.py:74`) but It is not possible to control each element's style...

matplotlib

When `table_conversion='matplotlib'` is used multi-indexed dataframes are rendered incorrectly — multiindex is getting rolled back to the columns — as if I called `.reset_index()` `dfi.export(last_reses, 'dream_strats.png', table_conversion='matplotlib')` **How it looks:**...

matplotlib

when I run below code on my macbook,everything is Ok; ```python helper = WxMsgHelper() current_date = datetime.datetime.now().strftime('%Y-%m-%d') for user_name in user_tables_map: df1 = df[df.createby.str.contains(fr'\b{user_name}\b', regex=True, case=False)] if len(df1) > 10:...

matplotlib

When choosing to execute the notebook first (either through the notebook interface or the library), the screenshot log appears in the resulting PDF. See image below. ```python import pandas as...

Hi I am using a script to create a table like this. I encountered a problem that when several users try to generate a similar table, my server runs out...

It looks like there are some heuristics in the code that computes column sizes when rendering the HTML to an image. The following MWE shows the issue I'm running into:...