I tried to plot a graph by importing an Excel file to plot a log-log graph.
This was my code but it seems I'm not getting it right.
import matplotlib.pyplot as plt
import pandas as pd
df=pd.read_excel("C:\\users\mycomputer\\myfile.xlsx")
df.plot(x, y)
plt.show()
Here is a short example:
Here is a good reference on Matplotlib: https://jakevdp.github.io/PythonDataScienceHandbook/04.00-introduction-to-matplotlib.html