Ask Your Question

Revision history [back]

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.

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.