Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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()
Comment

PREVIOUS NEXT
Code Example
Python :: how to add a file to an email in python 
Python :: add new row to dataframe pandas 
Python :: selenium click on item in a list 
Python :: python is program running 
Python :: split list in pd dataframe into rows 
Python :: how to split a string with newline in python 
Python :: python yeild 
Python :: qt designer messagebox python 
Python :: python area of rectangle 
Python :: python first three characters of string 
Python :: run python script on android 
Python :: count occurrences of character in string python using dictionary 
Python :: how to calculate fibonacci numbers in python 
Python :: play video in python console 
Python :: tkinter delete toplevel 
Python :: heatmap in python 
Python :: Python Selenium import WebElement 
Python :: finding the maximum value in a list python 
Python :: login required django 
Python :: find optimal number of clusters sklearn 
Python :: numpy.random.choice 
Python :: regex for digits python 
Python :: python file write 
Python :: how to find lcm of 2 numbers in python 
Python :: python change directory to previous 
Python :: python pandas how to get the dataframe size 
Python :: access class variable from another class python 
Python :: res.send is not a function 
Python :: Python code to find Area of Rectangle 
Python :: python webbrowser module 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =