#!/usr/bin/env python # coding: utf-8 # **TEST OF matplotlib** # In[1]: import matplotlib.pyplot as plt import numpy as np # In[2]: # Data for plotting t = np.arange(0.0, 2.0, 0.01) s = 1 + np.sin(2 * np.pi * t) # In[3]: plt.plot(t, s) # In[ ]: