Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pandas DataFrames weergeven in de PDF #9

Open
dbrakenhoff opened this issue Jan 20, 2021 · 0 comments
Open

pandas DataFrames weergeven in de PDF #9

dbrakenhoff opened this issue Jan 20, 2021 · 0 comments

Comments

@dbrakenhoff
Copy link
Collaborator

Dit had ik nodig om pandas DataFrames in de PDF te laten verschijnen

# set options to display DataFrames in PDF
pd.set_option("display.latex.repr", True)
pd.set_option("display.latex.longtable", True)


def _repr_latex_(self):
    latex = """\\begin{center}
    {%s}
    \\end{center}""" % self.to_latex(float_format="{:0.2f}".format, bold_rows=True)
    return latex


pd.DataFrame._repr_latex_ = _repr_latex_  # monkey patch pandas DataFrame
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant