url_summary

url_summary(data: DataFrame, column: str, fig_height: int = 1000, fig_width: int = 1200, top_entries: int = 10, display_figure: bool = False) Figure

Creates a univariate EDA summary for a url column in a pandas DataFrame. The provided column should be a string/object column containing urls.

Parameters
  • data – Dataset to perform EDA on

  • column – A string matching a column in the data

  • fig_height – Height of the plot in inches

  • fig_width – Width of the plot in inches

  • top_entries – Max number of entries to show for countplots

  • display_figure – Whether to display the figure in addition to returning it