This worked as expected within an IJulia notebook: # run(`pip install seaborn`) # if needed using PyCall, PyPlot pygui(false) @pyimport seaborn x = rand(100); y = rand(100) seaborn.jointplot(x, y)
On Thursday, January 8, 2015 8:31:39 AM UTC-5, Isaiah wrote: > > > On Jan 8, 2015 6:59 AM, "Nils Gudat" <[email protected] <javascript:>> > wrote: > > > > Bumping the thread - has anyone tried this/is it possible? > > PyCall is quite straightforward when you keep in mind that obj.foo > translates to obj[:foo] ... and we know matplotlib works well: PyPlot. So, > it's worth a try. >
