Axes 'disappear'
Is there any way to 'disappear' the axes, 2d or 3d, leaving the graphic freestanding.
There will be a maintenance on the server on November 14th 2025.
Is there any way to 'disappear' the axes, 2d or 3d, leaving the graphic freestanding.
Yes. See here for more information. axes=False for 2d and frame=False for 3d. So for a 2d plot try this, for example:
plot(sin(x), (x, 0, 2*pi),axes=False)
For 3d we use frame. Try this
x, y = var('x,y')
plot3d(x^2 + y^2, (x,-2,2), (y,-2,2),frame=False)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-11-16 21:07:48 +0100
Seen: 1,400 times
Last updated: Nov 16 '13
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.