I want to plot a 3 line plots on the scatter plot to check how much scatter are the points from the line plot My scatter plot is obtained as below
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
x = np.array([38420690,53439687,82878917,97448841])
y = np.array([47581627,12731149,3388697,911432])
plt.scatter(x,y)
plt.plot()
plt.show()
Now, I want to plot another 3 line graphs on the scatter plot such that,
- 1 line graph @ x = y
- 2nd Line graph @ x = 10*y
- 3rd Line graph @ x = 10/y
Expected outout
Please help me how to do this in python

