[text] GFR

Viewer

  1. import numpy as np
  2.  
  3. # Data
  4. women = np.array([5832892, 6843152, 4935126, 38421781, 998275, 1234875, 2184932, 3158413, 38419321])
  5. births = np.array([330380, 642581, 296817, 165328, 98768, 102203, 190215, 215349, 224581])
  6.  
  7. # General Fertility Rate
  8. GFR = (births / women) * 1000
  9. print("General Fertility Rate (per 1000 women):", GFR)
  10.  
  11. # Standard Deviation
  12. std_dev = np.std(GFR)
  13. print("Standard Deviation of General Fertility Rate:", std_dev)

Editor

You can edit this paste and save as new:


File Description
  • GFR
  • Paste Code
  • 08 May-2024
  • 449 Bytes
You can Share it: