Chapter 2 notes 4 Flashcards
Name the descriptive statistics
Minimum
Maximum
Range
Count
Sum
Define minimum
The smallest value in a collection of values
Define maximum
The largest value in a collection of values
Define range
The range of values from the minimum to the maximum
Define count
The number of values in a collection
Define sum
The total of the values in a collection
What is another name for measures of dispersion?
Measures of variability, such as range, help determine how spread out values are
Determining the minimum and maximum with built in functions min and max
In[1]: min(36, 27, 12)
Out[1]: 12
In[2]: max(36, 27, 12)
Out[2] 36
The min and max functions are examples of a functiona-style programing concept called _______
Reduction
They reduce a collection of values to a single value
Other’s also include sum, average, variance and standard deviation of a collection of values
The range of a collection of values is a measure of _______
Dispersion
For the values 47,95,88,73,88 and 84 calculate the range
In[1]: print(‘Range:’, min(47, 95, 88, 73, 88, 84), ‘-‘, max(47, 95, 88, 73, 88, 84))
Out[1]: 47 - 95