I would like to know how to put the following plots together in a same figure:
import matplotlib.pyplot as plt
from sympy.plotting.plot import plot_parametric
from sympy import *
from sympy.abc import x,y,z
p1 = plt.arrow(0,0,0.5,0.5,head_width = 0.05, head_length=0.05,length_includes_head=True)
p2 = plot_parametric(cos(x),sin(x),(x,0,2*pi))
It might be helpful to know that it is possible to access to the axes and figure of plots of Sympy by
fig = p2._backend.fig
ax = p2._backend.ax
Any help is really appreciated.