ATK.Visualisation.grid#

ATK.Visualisation.grid(layout: Sequence[Sequence[DataSet]]) GridBox[source]#

Combines any number of plottable DataSet objects into a neat grid of figures (see here).

Parameters:
layoutSequence of Sequence of DataSet

Each internal list forms a row of the output grid.

Examples

A 5x6 grid layout containing three rows:


Should be passed as:

layout = [[image, image, lc    , lc  , lc   ],
          [image, image, lc    , lc  , lc   ],
          [hrd  , hrd  , spec , spec , spec ],
          [hrd  , hrd  , spec , spec , spec ],
          [table, table, table, table, table],
          [table, table, table, table, table]]

where: