Scatter Plots

plotly()
n = [4,8,16,32,64]
data = MaxError.(n)
markers = [:circle]
plot(n, data, shape = markers)

This is my code being written in a Jupyter notebook. I am trying to make a simple scatter plot, but the Plotly documentation is horrible and not user friendly! I can’t figure it out or find anything anywhere. Please help, thanks.

Use plotly via Plots.jl, it has a very good documentation.

3 Likes