Get your own Python server Result Size: 625 x 533
Python code
data.csv
 
x
 
import pandas
import numpy
df = pandas.read_csv("data.csv")
v = df['Volume']
#Finding the mean value:
mean = numpy.mean(v)
print(mean)
1.6111111111111116