In this final problem, you will work to build up the program so that it calculates central tendencies for the 2nd Dose Allocation column located in the covid19.csv file(originally from the CDC website).
For this problem, focus on calculating all the same central tendencies for the 2nd Dose Allocations column. First, add the block that removes the selected column. Then add the selection block for the new column. Next, add each of the calculations. The output statements will then display the new values for each of the calculations. Once you have completed all the steps, run the program. The following is the output you should expect to get.
Central Tendencies of the following Column: 1st Dose Allocations Mean: 62061.63265306125 Median: 38025.0 Standard Deviation: 81206.03894539685 Variance: 6594420761.20131 Kurtosis: 14.60309669876606 Central Tendencies of the following Column: 2nd Dose Allocations Mean: 61923.45238095237 Median: 38025.0 Standard Deviation: 81217.91840322685 Variance: 6596350269.753216 Kurtosis: 14.611164710632755
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
In this program, you will start from where you left off. This time you will add and edit the blocks so that the same central tendencies are calculated on the column at index three. At the bottom of the program add the remove column block and then add the selection block for the 2nd Dose Allocation column. Then Add the calculation blocks from the tray. Then add the output block that displays the new column header. Finally, add the generic output blocks and build up the output so it outputs each calculation new value. Be sure to follow the given format!
Central Tendencies of the following Column: 1st Dose Allocations
Mean: 62061.63265306125
Median: 38025.0
Standard Deviation: 81206.03894539685
Variance: 6594420761.20131
Kurtosis: 14.60309669876606
Central Tendencies of the following Column: 2nd Dose Allocations
Mean: 61923.45238095237
Median: 38025.0
Standard Deviation: 81217.91840322685
Variance: 6596350269.753216
Kurtosis: 14.611164710632755