You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Any help is appreciated.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: