Simple Scatter plot

Source code notebook

using InMemoryDatasets, StatisticalGraphics

# generate random data
ds = Dataset(x=rand(100), y=rand(100))


sgplot(ds, Scatter(x=:x, y=:y))

This page was generated using DemoCards.jl and Literate.jl.