Let's say I have a code like shown below:
ListPlot[{{1,1},{2,1},{3,-1},{4,-1}}]
An output is shown on the figure.
The "-" (minus) sign is shown near the negative tick values of the Y axis. Is there a straightforward way to make the "+" (plus) appear near the corresponding positive values, i.e. "+0.5" and "+1.0"?


Ticks -> {Automatic, {#, NumberForm[#, {3, 1}, NumberPadding -> {"", "0"}, NumberSigns -> {"-", "+"}]} & /@ {-1.0, -0.5, 0.5, 1.}}give what you need? – kglr Oct 10 '17 at 15:23PaddedForm[#, {2, 1}, NumberSigns -> {"-", "+"}]instead ofNumberForm[...? – kglr Oct 10 '17 at 15:39