Tables of graphics?
I recall seeing a function that would allow one to make a table (or a series) of graphics. For example, if I wanted to display 10 plots in a series, how would I do this?
Thanks in advance.
I recall seeing a function that would allow one to make a table (or a series) of graphics. For example, if I wanted to display 10 plots in a series, how would I do this?
Thanks in advance.
Hello,
You can use graphics_array as in
sage: G = [plot((lambda x: sin(n*x))) for n in xrange(1,5*pi,pi)]
sage: graphics_array(G)
and precise the number of rows and columns you want
sage: graphics_array(G,2,2)
For more information on options
sage: graphics_array?
Vincent
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2010-12-11 00:37:13 +0100
Seen: 819 times
Last updated: Dec 11 '10