What is the best way to create a Sympy equation, do something like take the derivative, and then plot the results of that equation?
I have my symbolic equation, but
You can use directly the plotting functions of SymPy:
from sympy import symbols from sympy.plotting import plot as symplot t = symbols('t') x = 0.05*t + 0.2/((t - 5)**2 + 2) symplot(x)
Most of the time it uses matplotlib as a backend.