Hello,
what is the syntax for drawing the axis on both sizes of the axis? That is, I would like the thicks not only on the bottom of the plot (x axis) but also on the upper size. Similarly, I would like the thicks on both left and right sizes:
using PyPlot
clf()
x = 1:10
y = broadcast(^, 2, x)
p = plot(x, y,
linestyle = "-", color = "red", linewidth=2)
Thank you