-
Notifications
You must be signed in to change notification settings - Fork 0
Plotting
tito-kimbo edited this page Sep 10, 2018
·
3 revisions
Plotting provides visual representations of data and allows us to better understand relationships between features and even to find non-trivial correlations. Creative plotting and proper interpretation of the resulting graphs are key to understanding both Machine Learning and Data Science.
In BMLF, we offer several plotting options, divided in a couple sections: basic plots and statistical plots.
This section has the most basic and common graphical representations of data. Currently, it supports the following
- Bar plot: Represents data as vertical bars for magnitude comparison amongst other uses.
- Pie chart: Represents data as portions of a circle with size proportional to their magnitude.
- Line plot: Represents data as points and creates a line joining them in order to highlight trends.
This section contains statistics-specific representations of data and more complex visualizations. At the moment, available plots are
- Histogram: Representation of data repetition across a given dataset.
- Box plot: Informs of data point distribution, mean and variance; as well as allows further comparison with future measurements.
- Scatter plot: Represents data as points in a 2-dimensional space. Allows to visually notice groups, outliers and other trends.
- Histogram 2D: Same as histogram but with 2D data.