The video shows how to use mathplotlib function in Excel by taking range values available on Excel cells. The example ranges are just x values with y values (x cube).
The example code used is given below using scatter graph.
import matplotlib as plt
plt.scatter(xl("range1"), xl("range2"))
plt.title("graph title")