Chapter 2 notes 4 Flashcards

1
Q

Name the descriptive statistics

A

Minimum
Maximum
Range
Count
Sum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define minimum

A

The smallest value in a collection of values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define maximum

A

The largest value in a collection of values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define range

A

The range of values from the minimum to the maximum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define count

A

The number of values in a collection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define sum

A

The total of the values in a collection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is another name for measures of dispersion?

A

Measures of variability, such as range, help determine how spread out values are

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Determining the minimum and maximum with built in functions min and max

A

In[1]: min(36, 27, 12)
Out[1]: 12

In[2]: max(36, 27, 12)
Out[2] 36

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The min and max functions are examples of a functiona-style programing concept called _______

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The range of a collection of values is a measure of _______

A

Dispersion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

For the values 47,95,88,73,88 and 84 calculate the range

A

In[1]: print(‘Range:’, min(47, 95, 88, 73, 88, 84), ‘-‘, max(47, 95, 88, 73, 88, 84))
Out[1]: 47 - 95

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly