I am working on a project that calls for plotting of (x,y) points in the plane in Julia. So far, using Plots with pyplot backend in a Jupyter notebook, I have been able to plot a few million of points at a time with simple scatter() functions. However, I would like to plot more at a time and I bet that this is not really an efficient method as I scale up n.
Are there are nicer, faster, and/or less memory intensive ways to plot many points in Julia? I would prefer to use something that stays close to my setup above, but that is not necessary. Switching language or switching my method of displaying the data may also be considered.