How to display a graph in ipython notebook
问题 Trying to do some plotting in SymPy - As per this video I have written : from sympy.plotting import plot, plot_parametric e = sin(2*sin(x**3)) plot(e, (x, 0, 5)); But after evaling that cell I don't get any output? There isn't an error or anything, it just doesn't display anything. Another test : from sympy import * from sympy.plotting import plot, plot_parametric import math import numpy as np import pandas as pd import matplotlib.pyplot as plt expr = x**2 + sqrt(3)*x - Rational(1, 3) lf =