Simple python script that takes in excel file and returns different statistics using numpy and pandas
Really simple python script for use in a statistics class for reading various given excel files. Takes in .xlsx file and outputs in terminal the basic statistic measurements like mean, variance, and standard deviation.
For local use you will need to have numpy, pandas, and openpyxl libraries installed:
python -m pip install pandas
python -m pip install numpy
python -m pip install openpyxl
And a proper path to python version 3.11.4 or later which can be downloaded from https://www.python.org/downloads/
Change directories to the location of the script simply run it in the command terminal by using:
python main.py
Instructions in the terminal should be clear for evaluating .xlsx files.
Distributed under the MIT License. See LICENSE.TXT for more information.