|   | 1 |  initial version  | 
It is rather funny, after having created and displayed an animation the graphics_array shows up as expected with all axis labels.
But when commenting out A.show() the labels appear only in the last graphic.
p1=plot(x^2,(x,-2,2),axes_labels=['x1','y1'])
p2=plot(x^2-1,(x,-2,2),axes_labels=['x2','y2'])
p3=plot(x^2+1,(x,-2,2),axes_labels=['x3','y3'])
p4=plot(x^3,(x,-2,2),axes_labels=['x4','y4'])
A = animate([p1,p2,p3,p4],figsize=6)
A.show()
g = A.graphics_array(ncols=2)
g.show()
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.