Skip to content
Discussion options

You must be logged in to vote

The best workaround for now this this:

from IPython.display import display, HTML
display(HTML(df.to_html(index=False)))

and a simple wrapper function makes this easier
def format_df(df):
    """format the dataframe for display without index"""
    return display(HTML(df.to_html(index=False)))

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by astrowonk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
1 participant