Visualization¶
Visualize data in various forms including scatter plots, heat maps, categorical heatmaps, box and whisker plots, columnwise summaries, histograms, and item frequency plots.
plot(x, y[, xlabel, ylabel, title]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d visualization, and shows the resulting visualization. |
show(x, y[, xlabel, ylabel, title]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d visualization, and shows the resulting visualization. |
SArray.show([title, xlabel, ylabel]) |
Visualize the SArray. |
SArray.plot([title, xlabel, ylabel]) |
Create a Plot object representing the SArray. |
SArray.explore([title]) |
Explore the SArray in an interactive GUI. |
SFrame.show() |
Visualize a summary of each column in an SFrame. |
SFrame.plot() |
Create a Plot object that contains a summary of each column in an SFrame. |
SFrame.explore([title]) |
Explore the SFrame in an interactive GUI. |
visualization.scatter(x, y[, xlabel, …]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d scatter plot, and returns the resulting Plot object. |
visualization.heatmap(x, y[, xlabel, …]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d heatmap, and returns the resulting Plot object. |
visualization.categorical_heatmap(x, y[, …]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d categorical heatmap, and returns the resulting Plot object. |
visualization.box_plot(x, y[, xlabel, …]) |
Plots the data in x on the X axis and the data in y on the Y axis in a 2d box and whiskers plot, and returns the resulting Plot object. |
visualization.columnwise_summary(sf) |
Plots a columnwise summary of the sframe provided as input, and returns the resulting Plot object. |
visualization.histogram(sa[, xlabel, …]) |
Plots a histogram of the sarray provided as input, and returns the resulting Plot object. |
visualization.item_frequency(sa[, xlabel, …]) |
Plots an item frequency of the sarray provided as input, and returns the resulting Plot object. |
visualization.set_target([target]) |
Sets the target for visualizations launched with the show method. |