GLMakie Image

VERSION
0.6s
GLMakie (Julia)
v"1.3.1"
]up; add GLMakie#master AbstractPlotting#master StatsMakie#master
165.9s
GLMakie (Julia)
using AbstractPlotting, GLMakie
AbstractPlotting.inline!(true)
scatter(rand(4))
130.0s
GLMakie (Julia)
using StatsMakie
using StatsMakie: linear, smooth
N = 1000
a = rand(1:2, N) # a discrete variable
b = rand(1:2, N) # a discrete variable
x = randn(N) # a continuous variable
y = @. x * a + 0.8*randn() # a continuous variable
z = x .+ y # a continuous variable
N = 200
x = 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)
Runtimes (1)