Data Science 1 Problems

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10

Finding the Standard Deviation

Over this and the next few 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 standard deviation for the 1st Dose Allocations column. Standard deviation is the amount of variance of the data around the mean. Once you have added the standard deviation 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: 38025.0
Standard Deviation: 81206.03894539685
Variance: 0.0
Kurtosis: 0.0

Coding:

Blocks

PreviousNext