MathGroup Archive 2010

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Easy way to label graphics grids?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg109293] Re: Easy way to label graphics grids?
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Tue, 20 Apr 2010 05:53:51 -0400 (EDT)

plts ==
  Table[
   Plot[a*x^b, {x, 0, 1}],
   {a, 3}, {b, 0, 2}];

rowLabels == Table["a == " <> ToString[a], {a, 3}];
columnLabels == Prepend[
   Table["b == " <> ToString[b], {b, 0, 2}], ""];

Grid[
 Append[
  Transpose[
   Prepend[Transpose[plts], rowLabels]],
  columnLabels]]


Bob Hanlon

---- "Ren=C3=A9 Wuttke" <rene at wuttke.com> wrote:

==========================
Hey everyone,

do you know if there is an easy way to label the rows and columns of a
GraphicsGrid? like this:

Label A  Graph   Graph  Graph
Label B  Graph   Graph  Graph
Label C  Graph   Graph  Graph
             Label 1 Label 2 Label 3

Thanks,
Ren==E9



  • Prev by Date: Re: Easy way to label graphics grids?
  • Next by Date: Re: Bug in Sum?
  • Previous by thread: Re: Easy way to label graphics grids?
  • Next by thread: Re: Easy way to label graphics grids?