Simon Danisch / Feb 22 2020
with ASAnshul Singhvi
GLMakie Image
VERSION0.6s
GLMakie (Julia)
v"1.3.1"
]up; add GLMakie#master AbstractPlotting#master StatsMakie#master165.9s
GLMakie (Julia)
using AbstractPlotting, GLMakieAbstractPlotting.inline!(true)scatter(rand(4))130.0s
GLMakie (Julia)
using StatsMakieusing StatsMakie: linear, smoothN = 1000a = rand(1:2, N) # a discrete variableb = rand(1:2, N) # a discrete variablex = randn(N) # a continuous variabley = @. x * a + 0.8*randn() # a continuous variablez = x .+ y # a continuous variableN = 200x = 10 .* rand(N)a = rand(1:2, N)y = sin.(x) .+ 0.5 .* rand(N) .+ cos.(x) .* a;0.7s
GLMakie (Julia)
wireframe(histogram(nbins = 30), x, y)0.7s
GLMakie (Julia)
Shift+Enter to run
GLMakie (Julia)