How can we increase the line width of plots produced by plot_implicit from Sympy? Neither I can find a parameter designated to this in the API, nor does Google give any expedient cues.
I've read that, e.g., plot_implicit(Eq(x1**2 + x2**2 - 1))._backend.ax references an Axis object of Matplotlib, so I tried changing the default line width of Matplotlib prior to invoking plot_implicit from Sympy, but it doesn't make any change:
from matplotlib import rcParams
rcParams['lines.linewidth'] = 10
In case that this isn't possible (which is hard to believe), what other options are there to produce implicit plots of functions in Python, such that the line width can be adapted?
