1 | initial version |
Like this:
sage: plot(sin(x), (x, 0, 10), ticks=[None, []])
Not that None
as the first element of the ticks
option means using the default tick marks on the x-axis, while []
as the second element means no tick marks along the y-axis. For more details about the ticks
option, see the documentation.
2 | No.2 Revision |
Like this:
sage: plot(sin(x), (x, 0, 10), ticks=[None, []])
Not Note that None
as the first element of the ticks
option means using the default tick marks on the x-axis, while []
as the second element means no tick marks along the y-axis. For more details about the ticks
option, see the documentation.