Is it possible to plot two implicit functions on the same canvas with sympys plot_implicit function?
E.g. have both lines from the two plots in the example be shown on one canvas.
from sympy import *
x,y = symbols('x y')
init_printing()
plot_implicit(Eq(abs(x)+abs(y), 1), (x,-1,1), (y, -1,1))
plot_implicit(Eq(x**2 + y**2, 1), (x,-1,1), (y, -1,1))
