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 37 dataframe_image issues
Sort by recently updated
recently updated
newest added

Fixes #59 using self.ss_width and self.ss_height creates dependencies between different dataframes in a file. This adjustments replaces it with a specific variable per datafame

Hi all, I am trying to pdf a Jupyter Notebook using "Download as" - "DataFrame as Image" then using the Latex option and Chrome for Screenshots. My document has tables...

Running dfi.export(df_styled, "output_file.png") on Ubuntu 20.04 with latest Google Chrome (version 99) creates the following warnings and errors. [0324/143535.290253:WARNING:bluez_dbus_manager.cc(248)] Floss manager not present, cannot set Floss enable/disable. [0324/143538.178682:ERROR:sandbox_linux.cc(377)] InitializeSandbox() called...

#41 : as the dependencies for this package are found by setuptools.find_packages(), we need to make lxml an import for it to be a dependency.

Hey there!) I got some problems using the package in docker. I got this traceback inside: ``` >>> df = pd.DataFrame({"1": [1, 2, 3], "2":[5, 1, 5]}) >>> dfi.export(df, "pic.png")...

With nbconvert, you have the option of specifying [a large number of configuration options](https://nbconvert.readthedocs.io/en/latest/config_options.html). [We even set a single config option here](https://github.com/dexplo/dataframe_image/blob/master/dataframe_image/_convert.py#L272) with `PDFExporter`. Perhaps we can add a `config`...

When exported, the size of the table is always the same, regardless of the settings made for its size in the jupyter notebook (when viewing it in the Jupyter notebook...

Hello, I have run the following example code to export a dataframe to a png, using the "matplotlib" table converter. ```python import dataframe_image as dfi import pandas as pd import...

enhancement
help wanted

Hi, thank you for developing this package, however I am having some problems. This is my configuration: Windows 11 MiKTeX installed and updated (as suggested in [nbconvert's documentation](https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex)) python 3.10.1...