I am starting to use the interactive chart from Matplotlib:
%matplotlib notebook
import matplotlib.pyplot as plt
fig, axes = plt.subplots(1, figsize=(8, 3))
plt.plot([i for i in range (10)],np.random.randint(10, size=10))
plt.show()

Does anyone know if there is a way to hide the interactive mode toolbars?
source
share