How can I have the output plots in two columns instead of having the plots in a sequence? Like the following:
[
]
How can I have the output plots in two columns instead of having the plots in a sequence? Like the following:
[
]
Example:
(*Arbitrary data*)
data = Plot[Sin[x], {x, 0, #}] & /@ (# & /@ Range[2, 5, 1])
(*Process*)
GraphicsGrid @ {GraphicsColumn @ # & /@ Partition[# & /@ data, 2]}
Output:
References
GraphicsGrid@ConstantArray[Plot[Sin[x], {x, 0, 2 Pi}], {2, 2}]– BlacKow Apr 14 '16 at 19:12