I am using following commands to create a scatter plot in SageMath notebook;
from sage.plot.scatter_plot import ScatterPlot
x = ScatterPlot(range(2, 100000), [len(divisors(x)) for x in range(2, 100000)], {'facecolor':'white', 'marker':'s'})
show(x)
However, only thing I am getting is this output;
πππππππ ππππ ππππππππ πππππππππ ππ πΏπΏπΏπΏπΎ ππππ ππππππ.
How can I show a scatter plot using SageMath?