[?] Make the y axis represent imaginary numbers?

I Have seen others using the y axis to plot the imaginary values of a complex number, but i can not find any example on Mathematica. Is there a way to make the plot of the imaginary part of a complex number along with its real part on an x and y coordinate? Making it be Im and Re axis?

Thank you for any response…

Hi Luis,

Maybe ReImPlot which was added in V12.

Or if it is a list of complex numbers e.g.

RandomComplex[{0, 10 + 10 I}, 5] // ReIm // ListPlot[#, AxesLabel -> {"Real", "Imaginary"}] &

Thanks you very much, you just gave me a good reason to update my license…