Answers for "how to plot graphs in python using data from excel"

1

read data from excel and plot in python

import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_excel('C:/Users/user/Documents/JCI.xlsx')
data.plot()
plt.show()
Posted by: Guest on August-13-2021

Code answers related to "how to plot graphs in python using data from excel"

Python Answers by Framework

Browse Popular Code Answers by Language