user4446902
user4446902

Reputation:

How to create insights from an excel file using either Python? I'm a beginner in both languages

I have a large Excel spreadsheet which has lots and lots of historical data of an organisation. I want to be able to read that excel file and create valuable insights from it. I don't expect anyone to do this for me, but I'm just hoping someone can pinpoint me as to how should I go about doing this on Python/R or suggest any online resource I can access to get this done.

Upvotes: 0

Views: 113

Answers (1)

Ashutosh Dayal
Ashutosh Dayal

Reputation: 41

You should take a look at openpyxl: http://openpyxl.readthedocs.io/en/default/. It is great library for reading, writing and processing Excel spreadsheet in python. You can easily process the data and take valuable insights from it.

Upvotes: 1

Related Questions