I have a very simple code of displaying an Excel value table as a graph in Jupyter Notebook.
import matplotlib.pyplot as plt
import pandas as pd
df = pd.read_excel("file name")
plt.plot(df["viscosity"], df['D'])
plt.xlabel('viscosity[]')
plt.ylabel('D [m^2/s]')
plt.title("The diffusion coeffcient as a function of the viscosity ")
plt.legend()
plt.show()
where the output is a simple line. I want to add on the graph the exact values ββin the form of dots. (add on not to replace).