I'm using Spyder's Ipython console to try to get some quick parametric plots of functions. For now I'm focusing on x = cos(t), y = sin(t). I ran the command
import sympy as sp
sp.init_session()
p = plotting.plot_parametric(cos(t),sin(t),(t,0,2*pi))
and I get an oblong plot of the curve.
If I enter
p.aspect_ratio = (1,1)
p.show()
nothing changes. I try other aspect ratios and still nothing changes.
After looking at this answer In sympy plotting, how can I get a plot with a fixed aspect ratio?
I tried following their instructions to try to leverage matplotlib and I get no errors. But when I enter
plt.show()
nothing shows.