turicreate.SFrame.explore

SFrame.explore(title=None)

Explore the SFrame in an interactive GUI. Opens a new app window.

Parameters:
title : str

The plot title to show for the resulting visualization. Defaults to None. If the title is None, a default title will be provided.

Returns:
None

Examples

Suppose ‘sf’ is an SFrame, we can view it using:

>>> sf.explore()

To override the default plot title and axis labels:

>>> sf.explore(title="My Plot Title")