Open In App
Related Articles

Loading Excel spreadsheet as pandas DataFrame

Improve Article
Improve
Save Article
Save
Like Article
Like

Pandas is a very powerful and scalable tool for data analysis. It supports multiple file format as we might get the data in any format. Pandas also have support for excel file format.

We first need to import Pandas and load excel file, and then parse excel file sheets as a Pandas dataframe.




import pandas as pd
  
# Import the excel file and call it xls_file
excel_file = pd.ExcelFile('pandasEx.xlsx')
  
# View the excel_file's sheet names
print(excel_file.sheet_names)
  
# Load the excel_file's Sheet1 as a dataframe
df = excel_file.parse('Sheet1')
print(df)


Output:

One can also read specific columns using ‘usecols‘ parameter of read_excel() method.




# import pandas lib as pd 
import pandas as pd 
    
require_cols = [0, 3
    
# only read specific columns from an excel file 
required_df = pd.read_excel('SampleWork2.xlsx', usecols = require_cols) 
    
print(required_df) 


Output:

        Name  Percentage
0      Ankit          95
1      Rahul          90
2    Shaurya          85
3  Aishwarya          80
4   Priyanka          75

For more examples, refer https://www.geeksforgeeks.org/creating-a-dataframe-using-excel-files/

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 08 Jan, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials