| Author |
Comment/Response |
Michael
|
12/14/12 07:12am
Try this
ListPlot[{{0, 1}, {1, 2}, {2, 3}}, Axes -> False, Frame -> True,
FrameTicks -> {All, All, None, Table[n Sqrt[2], {n, 3}]},
FrameLabel -> {{"a", "b"}, {"c", "d"}},
PlotStyle -> Directive[Purple, PointSize[0.015]]]
or this
ListPlot[{{0, 1}, {1, 2}, {2, 3}}, Axes -> False, Frame -> True,
FrameTicks -> {All, All, None, Table[{n Sqrt[2], n}, {n, 3}]},
FrameLabel -> {{"a", "b"}, {"c", "d"}},
PlotStyle -> Directive[Purple, PointSize[0.015]]]
URL: , |
|