Data Science 1 Problems
Finding the Mean
Over then next six problems you will work to build up a program that calculates central tendencies for two columns of data located in the covid19.csv file(originally from the CDC website).
For this problem, focus on calculating the mean for the 1st Dose Allocations column. First, read through the existing program and decide which block in the tray needs to be added to calculate the mean. Second, notice column two matches to the 1st Dose Allocations column in the covid19.csv file because column indexes start at zero. This column is selected before the mean calculation is done. Finally, once you have added the mean action block, 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: 0.0
Standard Deviation: 0.0
Variance: 0.0
Kurtosis: 0.0