Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 211 Bytes

bivariate.md

File metadata and controls

17 lines (10 loc) · 211 Bytes

Bivariate Example

using AverageShiftedHistograms, Plots

x = randn(10_000)
y = x + randn(10_000)

o = ash(x, y)

plot(o)

savefig("bivariateplot.svg"); nothing # hide