Removing axes in Plots.jl 3D plot

Very much similar to Removing Grid and Plot Manipulation on PyPlot 3D Figures, I have a 3D plot drawn with Plots.jl (rather than PyPlot.jl) where I would like to remove the axes/box, i.e. I want the image to be floating in white space. MWE

using Plots
ts = linspace(0,8π,100);
x = map(cos,ts); y = 0.1ts .* map(sin,ts); z = 1:100;
pyplot();
scatter(x, y, z, axis=[])

Here, axis=[] just removes the axes ticks and tick labels:

image

How do I remove the box as well? Thanks in advance.

framestyle=:none also doesn’t do it:

image

Based on this other post, the desired result can be achieved by using the matplotlib axis() function acting on Plots.jl pyplot() backend object:

p = scatter(x, y, z, dpi=100)
p[1].o.axis("off")

NB:
need to click in the plot scene so that the box disappears.