-2

How can I have the output plots in two columns instead of having the plots in a sequence? Like the following:

[Like this ]

faf
  • 91
  • 9

1 Answers1

2

Example:

(*Arbitrary data*)
data = Plot[Sin[x], {x, 0, #}] & /@ (# & /@ Range[2, 5, 1])

(*Process*)
GraphicsGrid @ {GraphicsColumn @ # & /@ Partition[# & /@ data, 2]}

Output:

Output

References

# @ & /@
GraphicsGrid
GraphicsColumn
Partition

e.doroskevic
  • 5,959
  • 1
  • 13
  • 32