ginput

Matplotlib.pyplot.ginput() in Python

Matplotlib.pyplot.ginput() in Python Question: I am using Jupyter Notebook while running the below code, import matplotlib.pyplot as plt import numpy as np a = np.arange(10) b = np.sin(a) plt.plot(a,b) print("After 3 clicks:") x = plt.ginput(3) print(x) plt.show() While running this code I get the below warning UserWarning: Matplotlib is currently using module://matplotlib_inline.backend_inline, which is a …

Total answers: 1