turicreate.SArray.explore¶
-
SArray.
explore
(title=None)¶ Explore the SArray 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 ‘sa’ is an SArray, we can view it using:
>>> sa.explore()
To override the default plot title and axis labels:
>>> sa.explore(title="My Plot Title")