For example,
Plot[x^3, {x, -1, 1}]
gives ticks on both axes, and
Plot[x^3, {x, -1, 1},Frame->True]
gives ticks on the frame. Is it possible to have ticks on the axes with the framed plot?
Thank you for your help!
For example,
Plot[x^3, {x, -1, 1}]
gives ticks on both axes, and
Plot[x^3, {x, -1, 1},Frame->True]
gives ticks on the frame. Is it possible to have ticks on the axes with the framed plot?
Thank you for your help!
Overlay. Trygr00=Plot[x^3, {x, -1, 1},ImagePadding->20]; gr01=Plot[x^3, {x, -1, 1},Frame->True,ImagePadding->20]; Overlay[{gr00,gr01}]– andre314 Apr 21 '18 at 21:40Framed[Plot[x^3, {x, -1, 1}]]do what you want? – Bob Hanlon Apr 22 '18 at 04:19