Simple Matplotlib Example Using Python in Excel
HTML-код
- Опубликовано: 9 фев 2025
- 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")