using CairoMakie f = Figure() Axis(f[1, 1]) vectors = [randn(800) .+ i/2 for i in 0:5] ...
using CairoMakie f = Figure() Axis(f[1, 1]) vectors = [randn(800) .+ i/2 for i in 0:5] ...
using CairoMakie f = Figure() Axis(f[1, 1]) density!(randn(180),direction = :y, npoints...
using CairoMakie f = Figure() Axis(f[1, 1]) density!(randn(180),direction = :y, npoints...
using CairoMakie f = Figure() Axis(f[1, 1]) density!(randn(180),color="greenyellow") f
using CairoMakie xs = [1,1,1,2,2,2,3,3,3] ys = rand(9) ymins = ys .- 1 ymaxs = ys .+ 1 ...
using CairoMakie using DelimitedFiles volcano = readdlm(Makie.assetpath("volcano.csv"),...
using CairoMakie using DelimitedFiles volcano = readdlm(Makie.assetpath("volcano.csv"),...
using CairoMakie using DelimitedFiles volcano = readdlm(Makie.assetpath("volcano.csv"),...
using CairoMakie using DelimitedFiles volcano = readdlm(Makie.assetpath("volcano.csv"),...
using GLMakie f = Figure() Axis3(f[1, 1], aspect=(0.5,0.45,1), perspectiveness=0.75) xs...
using GLMakie f = Figure() Axis3(f[1, 1], aspect=(0.5,0.45,1), perspectiveness=0.75) xs...
using GLMakie f = Figure() Axis3(f[1, 1], aspect=(0.5,0.45,1), perspectiveness=0.75) xs...
using CairoMakie f = Figure() Axis(f[1, 1]) xs = LinRange(0, 6.3, 80) ys = LinRange(0, ...
using CairoMakie f = Figure() Axis(f[1, 1]) xs = LinRange(0, 6.3, 80) ys = LinRange(0, ...
using CairoMakie, Distributions N = 100_000 x = rand(1:3, N) y = rand(Uniform(-1, 5), N...
using CairoMakie xs = rand(1:4, 800) ys = randn(800) dodge = rand(1:3, 800) boxplot(xs,...
using CairoMakie xs = rand(1:4, 800) ys = randn(800) dodge = rand(1:3, 800) boxplot(xs,...
using CairoMakie xs = rand(1:4, 800) ys = randn(800) boxplot(xs, ys,color="firebrick1")
using CairoMakie #Gantt data gantt = ( machine = [1,2,1,2], job = [1,4,2,3], task...