turicreate.SFrame.plot¶
-
SFrame.
plot
()¶ Create a Plot object that contains a summary of each column in an SFrame.
Returns: - out : Plot
- A :class: Plot object that is the columnwise summary of the sframe.
Examples
Suppose ‘sf’ is an SFrame, we can make a plot object as:
>>> plt = sf.plot()
We can then visualize the plot using:
>>> plt.show()