Hi, I want to create a panel plot using more than 1 variable. Is there a code something like this that works for the same? Thanks!
using AlgebraOfGraphics
a = DataFrame(
cat1 = rand([0,1], 20),
cat2 = rand([0,1], 20),
numcol = rand(20))
data(a) * mapping(:numcol, layout=[:cat1 :cat2] .=> nonnumeric) * visual(Hist) |> draw