display_dataframe_with_html#
API documentation for tradeexecutor.utils.notebook.display_dataframe_with_html Python function.
- display_dataframe_with_html(df)[source]#
Display a DataFrame in a notebook with clickable HTML links.
Use instead of
display(df)when the DataFrame contains HTML content such as<a>links that should be rendered.Example:
from tradeexecutor.utils.notebook import display_dataframe_with_html display_dataframe_with_html(stats)
- Parameters:
df (DataFrame) –