# Scatter Plots

**URL:** https://discourse.julialang.org/t/scatter-plots/7064
**Category:** New to Julia
**Created:** [November 14, 2017, 9:48am UTC](https://discourse.julialang.org/t/scatter-plots/7064 "2017-11-14T09:48:17Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Marcom](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/marcom/32/3779_2.png) [@Marcom](https://discourse.julialang.org/u/Marcom)
#### Post date: [November 14, 2017, 9:48am UTC](https://discourse.julialang.org/t/scatter-plots/7064/1 "2017-11-14T09:48:17Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [November 14, 2017, 9:50am UTC](https://discourse.julialang.org/t/scatter-plots/7064/2 "2017-11-14T09:50:09Z")

</div>

Use `plotly` via `Plots.jl`, it has a very good [documentation](http://docs.juliaplots.org/latest/).
