I been having TONS of fun with UnicodePlots recently.
However, when I want to make two plots, one after the other, in a script, only the last is displayed in my REPL.
For example, with this code in a .jl file, I call include("/path/to/my/file.jl")
in the REPL and only the barplot is displayed.
using UnicodePlots
boxplot(["apples", "oranges", "bananas"], [rand(20), rand(20), rand(20)])
barplot(["apples", "oranges", "bananas"], [sum(rand(20)), sum(rand(20)), sum(rand(20))])
I’m probably missing something really obvious here