I am trying to set AxesLabel to ListPlot. However, I have found a strange behaviour. The data are a toy set of complex numbers: data = (#[[1]] + I #[[2]]) & /@ (Transpose@{RandomReal[{0, 1}, 100], RandomReal[{0, 1}, 100]}); ListPlot[(Tooltip[{Re[#1], Im[#1]}] &) /@ data, AspectRatio -> 1, AxesLabel ->Style[#, 16, Bold] & /@ {“Re”, “Im”}] ThisRead more