Skip to content

Gramm is a complete data visualization toolbox for Matlab. It provides an easy to use and high-level interface to produce publication-quality plots of complex data with varied statistical visualizations. Gramm is inspired by R's ggplot2 library.

License

Notifications You must be signed in to change notification settings

piermorel/gramm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

gramm

View gramm on File Exchange

Gramm is a MATLAB toolbox that enables the rapid creation of complex, publication-quality figures. Its design philosophy focuses on a declarative approach, where users specify the desired end result, as opposed to the traditional imperative method involving for loops, if/else statements, etc.

The MATLAB implementation of gramm is inspired by the "grammar of graphics" principles (Wilkinson 1999) and the ggplot2 library for R by Hadley Wickham. As a reference to this inspiration, gramm stands for GRAMmar of graphics for MATLAB. A similar library called Seaborn also exists for Python.

Gramm has been used in many publications from varied fields and is particularily suited for neuroscience, from human movement psychophysics (Morel et al. 2017), to electrophysiology (Morel et al. 2016; Ferrea et al. 2017), human functional imaging (Wan et al. 2017) and animal training (Berger et al. 2017).

Demo live scripts

Typical use cases are described in these live scripts. We recommend opening the live scripts in MATLAB to benefit from interactive elements. A simplified workflow is presented below this table.

To run the files in Matlab online, you will need to add the gramm folder to your path (select the gramm folder in the files panel on the left, right click>Add to Path>Selected Folder(s)).

Demo View online Open in Matlab Online Preview
Getting Started πŸ‘€ Preview Open in MATLAB Online
Explore grouped data πŸ‘€ Preview Open in MATLAB Online
Explore X/Y data πŸ‘€ Preview Open in MATLAB Online
Explore Time Series data πŸ‘€ Preview Open in MATLAB Online
Advanced examples πŸ‘€ Preview Open in MATLAB Online

Workflow

The typical workflow to generate this figure with only 7 lines of code is detailed in the "Getting Started" live script.. The figure uses data from the carbig dataset and represents the evolution of fuel economy of new cars with time, depending on the number of cylinders indicated by color, and regions of origin separated across subplot columns.

GettingStarted example

Here are the main steps to generate this figure:

  1. Provide gramm with the relevant data for the figure: X and Y variables, but also the variables that will determine color, subplot rows/columns, etc.
load example_data.mat %Load example dataset about cars

% Create a gramm object g, provide x (year of production) and y (fuel economy) data,
% color grouping data (number of cylinders) and select a subset of the data (even numbers of cylinders)
g=gramm('x',cars.Model_Year,'y',cars.MPG,'color',cars.Cylinders,...
    'subset',~mod(cars.Cylinders,2);
% Subdivide the data in subplots horizontally by region of origin
g.facet_grid([],cars.Origin_Region);
  1. Add graphical layers to your figure: raw data layers (directly plot data as points, lines...) or statistical layers (fits, histograms, densities, summaries with confidence intervals...). One instruction is enough to add each layer, and all layers offer many customization options.
 % Plot raw data as points with a small horizontal offset between groups
g.geom_point("dodge",0.5);
% Plot linear fits of the data
g.stat_glm(); 
  1. Optionally configure legends, title and adjust the look the figure (colors, axes, etc.)
% Set appropriate names for legends
g.set_names('column','Origin', 'x','Year of production', 'y','Fuel economy (MPG)',...
    'color','# Cylinders');
%Set figure title
g.set_title('Fuel economy of new cars between 1970 and 1982');
  1. Draw the figure, gramm takes care of all the annoying parts: no need to loop over colors or subplots, colors and legends are generated automatically, axes limits are taken care of, etc.
g.draw();

About gramm

Installing gramm

We recommend installing gramm directly through MATLAB's Add-ons explorer. Search for "gramm" and click Add!

You can also install gramm manually by downloading the latest .mltbx file or by adding the gramm folder from the repository to your path.

Documentation

Once the toolbox is installed, type doc in the MATLAB command window and you will see gramm in the "Supplemental Software" section at the bottom of the left navigation bar. From there you will have access to several live script demos and a cheat sheet with all commands in a compact format.

Citing gramm

Gramm has been published in the Journal of Open Source Software. If you use gramm plots in a publication you can thus cite it using the following:

DOI

Morel, (2018). Gramm: grammar of graphics plotting in Matlab. Journal of Open Source Software, 3(23), 568, https://doi.org/10.21105/joss.00568

Compatibility

Recent versions of gramm (3.0 and above) target MATLAB above R2018b. Older releases work in older MATLAB versions. The statistics toolbox is required for some methods: stat_glm(), some stat_summary() methods, stat_density(). The curve fitting toolbox or the statistics toolbox is required for stat_fit().

Main Features

  • Accepts X, Y, Z and grouping data in varied types and shapes (arrays, matrices, cells)

  • Multiple ways of separating groups of data:

    • Colors, lightness, point markers, line styles, and point/line size ('color', 'lightness', 'marker', 'linestyle', 'size')
    • Subplots by row and/or columns, or wrapping columns (facet_grid() and facet_wrap()). Multiple options for consistent axis limits across facets, rows, columns, etc. (using 'scale' and 'space')
    • Separate figures (fig())
  • Multiple ways of directly plotting the data:

    • scatter plots (geom_point()) and jittered scatter plot (geom_jitter())
    • lines (geom_line())
    • pre-computed confidence intervals (geom_interval())
    • bars plots (geom_bar())
    • raster plots (geom_raster())
    • labels (geom_label())
    • point counts (geom_count())
    • swarm / beeswarm plots (geom_swarm())
    • text labels (geom_label())
  • Multiple statistical visualizations on the data:

    • y data summarized by x values (uniques or binned) with confidence intervals (stat_summary())
    • histograms and density plots of x values (stat_bin() and stat_density())
    • box and whisker plots (stat_boxplot())
    • violin plots (stat_violin())
    • quantile-quantile plots (stat_qq()) of x data distribution against theoretical distribution or y data distribution.
    • Smoothed data (stat_smooth())
    • 2D binning (stat_bin2d())
    • GLM fits (stat_glm(), requires statistics toolbox)
    • Custom fits with user-provided anonymous function (stat_fit())
    • Ellipses of confidence (stat_ellipse())
  • Easy export in multiple formats with a convenient export() method that can be called after draw() and maintains correct dimensions/aspect ratio.

  • All visualizations have plenty of options accessible through arguments, from computational to esthetic ones.

  • Representation of groupings can be fully customized (colormaps, ordering)

  • Multiple gramm plots can be combined in the same figure by creating a matrix of gramm objects and calling the draw() method on the whole matrix.

  • MATLABs axes properties are modifiable through the method axe_property()

  • Non-data graphical elements can be added such as reference lines or polygons (geom_abline(), geom_vline(),geom_hline(),geom_polygon())

  • For advanced customization, handles of all graphic elements and computation results are easily available after the draw() through the results structure of the gramm object

Gallery

All these examples are from the advanced examples live scripts

Superimposition of gramm objects on the same axes

Custom layouts

Custom layouts

Grid and scaling options

facet_grid() options

Colormap and legend options

facet_grid() options

Acknowledgements

gramm was inspired and/or used code from:

About

Gramm is a complete data visualization toolbox for Matlab. It provides an easy to use and high-level interface to produce publication-quality plots of complex data with varied statistical visualizations. Gramm is inspired by R's ggplot2 library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published