Mean Median and Mode
Input
245678245238
import numpy from scipy import stats speed = [2,4,5,6,7,8,2,4,5,2,3,8] median = numpy.median(speed) mode = stats.mode(speed) print(median) print(mode)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment