Skip to content

The project involves taking input an excel sheet and performing data analytics on the same and carrying out simple statistical modelling of the data. This includes plotting of graphs between various parameters using 'matplotlib' library of python.

Notifications You must be signed in to change notification settings

gopal10sep/SpreadsheetExcelDataAnalyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SpreadsheetExcelDataAnalyzer

Working:
1.Using xlrd package we are importing the excel sheet and reading its contents.
2.Iterating through Application Year column, I am appending the years extracted in to a list list_application_year[].
3.Similarly,Iterating through Publication Year column, I am appending the years extracted in to a list list_publication_year[].
4.I also made a list having the complete data complete_list[].
5.I transform the lists into dictionaries (dict_app_year, dict_pub_year), beacause dictionaries are of the form key:value.
6.While ietrating through the min_year to max_year in the complete list, I make two freq lists (app_year_freq_list[],pub_year_freq_list[]) corresponding to the year and their applications and publications using the dicitionaries earlier created.
7.Rest is simple graph plotting as readable by the comments included in the code.

Read Me:

  1. Extract the folder contents.
  2. The program reads the given excel file “sample.xlsx” and gives a relation between no. Of applications and publications in a given year.
  3. Modules and Python Packages required:
    • sudo pip install -U pip setuptools
    • sudo pip install xlrd
    • sudo apt-get install python3-tk
    • sudo pip install matplotlib
    • sudo pip install numpy
    4.Run the program: python excel.py

About

The project involves taking input an excel sheet and performing data analytics on the same and carrying out simple statistical modelling of the data. This includes plotting of graphs between various parameters using 'matplotlib' library of python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages