I'm using Interact to obtain an interactive plot and display it the Juno plot pane. However, for some reason the size of the plot is too large, and it can't be displayed whole in the plot pane:
@manipulate for i in 1:N
plot(X[1:i,1], X[1:i,2], xlim=(-4, 5), ylim=(-3,5))
end
A normal plot, on the other hand, appears with a small size:
plot(X[:,1], X[:,2], xlim=(-4, 5), ylim=(-3,5))
I tried to modify the size attribute of the plot function, and while it does reduce the plot size, the fonts remain too large, and all lines and curves in the plot remain thick.
Hello,
I'm using Interact to obtain an interactive plot and display it the Juno plot pane. However, for some reason the size of the plot is too large, and it can't be displayed whole in the plot pane:
A normal plot, on the other hand, appears with a small size:
I tried to modify the
size
attribute of theplot
function, and while it does reduce the plot size, the fonts remain too large, and all lines and curves in the plot remain thick.Any help is appreciated.