Plotting single density plot for table

Density plots are available in the StatsPlots package, which extends Plots:

julia> using StatsPlots

julia> x = rand(10, 3);

julia> density(vec(x))

image

1 Like