Remove box around plot

I’m making a plot where I plot some y data (say yy) to some x data (say xx). I would like to remove everything surrounding my plot (labels, ticks etc.) and save the output as an svg file. For this I use:

draw(SVG(“Benford20.svg”, 6inch, 3inch),plot(x = xx, y = yy, Guide.xlabel(“”), Guide.ylabel(“”), Guide.xticks(ticks=nothing), Guide.yticks(ticks=nothing)))

The problem is that the SVG file still contains some lines on the border of the plot, how do I remove those?

Did you get the solution to this?