This is an example of ploting with matplotlib.pyplot

For useful examples, visit https://matplotlib.org/2.0.2/examples/index.html

Following is showing on to plot some mathematical functions.

Following is showing how to plot some data created by ourselves

This example is used to show how to read regular data files and plot data in jupty notebook The key is that you need to import pandas as pd to read text files. Visit this website for more info http://awesci.com/reading-and-plotting-data-in-jupyter-notebook/ pd.read_csv function should be familiar, arguments as header=None, skiprows=1, you may use that.