Question: Given the data set, write basic python code ( without using any libraries or modules ) to produce the below statistics. data = [1, 6,
Given the data set, write basic python code (without using any libraries or modules) to produce the below statistics.
data = [1, 6, 7, 12, 8, 9, 2, 2, 3, 4, 5, 3, 10]
# print the data print("input data: ", input_data)
count,mean,median,mode, range, min, max, variance, range, standard Deviation,
# print the output here
#print('1.Count:', count)
#print('2.Mean:', mean)
##print('3.Median:', median)
#print('4.Mode:', mode)
#print('5.Range:', range)
#print('6.Min:', min)
#print('8.Max:', max)
#print('9.Variance:', variance)
#print('10.Standard Deviation:', stddev)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
