I want to change the x and y limits in PlotlyJS. I run this examplecode in Julia 0.5.2:
import PlotlyJS
x = linspace(0, 10, 200)
y = sin.(x)
PlotlyJS.plot(PlotlyJS.scatter(x=x, y=y))
and I’ve tried multiple ways of adding x and y limits but none have worked. How do I set the limits on the axis?