To install the package pandas write a python program to calculate the mean and standard deviation for list of numbers stored in excel file named data.xlsx.(Use JupyterNotebook or Spyder tool in Anaconda Navigator)

 import pandas

af=pandas.read_excel("d:\\data.xlsx")

print(af)

print(af.mean())

print(af.std())

Comments

Popular posts from this blog

Write a python program to compute cumulative product of a list of numbers (write function cumulative_product).

Write a Python program to compute distance between two points taking input from the user. Formula for Pythagorean theorem for compute distance between two points is: