Translate

Thursday, July 8, 2021

U.S. State Population Level Musings from CDC Vaccination/Cases/Death Data (Unfinished)

Unfinished and Under Construction


States
Click to enlarge charts



cor and cor.fit 
cor(m2[,2:4],use="complete.obs",method="spearman")
            Dose.rate  Case.rate Death.rate
Dose.rate   1.0000000 -0.4936535 -0.1764527
Case.rate  -0.4936535  1.0000000  0.5895227
Death.rate -0.1764527  0.5895227  1.0000000

cor(m2[,2:4],use="complete.obs",method="kendall")
            Dose.rate  Case.rate Death.rate
Dose.rate   1.0000000 -0.3529001 -0.1353445
Case.rate  -0.3529001  1.0000000  0.4340840
Death.rate -0.1353445  0.4340840  1.0000000

cor(m2[,2:4],use="complete.obs",method="pearson")
            Dose.rate  Case.rate Death.rate
Dose.rate   1.0000000 -0.4445890 -0.1631419
Case.rate  -0.4445890  1.0000000  0.7419991
Death.rate -0.1631419  0.7419991  1.0000000

m2[,cor.test(Dose.rate,
+ Death.rate,
+ use="complete.obs",method="spearman")]
        Spearman's rank correlation rho
data:  Dose.rate and Death.rate
S = 30864, p-value = 0.2018
alternative hypothesis: true rho is not equal to 0
sample estimates:
       rho 
-0.1764527 


m2[,cor.test(Dose.rate,
+ Case.rate,
+ use="complete.obs",method="spearman")]
        Spearman's rank correlation rho
data:  Dose.rate and Case.rate
S = 39186, p-value = 0.0001802
alternative hypothesis: true rho is not equal to 0
sample estimates:
       rho 
-0.4936535 

m2[,cor.test(Dose.rate,
+ Death.rate,
+ use="complete.obs",method="pearson")]
        Pearson's product-moment correlation
data:  Dose.rate and Death.rate
t = -1.1924, df = 52, p-value = 0.2385
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
 -0.4128672  0.1093974

 m2
                             State Dose.rate Case.rate Death.rate
 1:                        Alabama     98817     11265        231
 2:                         Alaska    113686      9361         50
 3:                 American Samoa     97021        NA         NA
 4:                        Arizona    111855     12324        247
 5:                       Arkansas     94521     11658        196
 6:                     California    124606      9400        159
 7:                       Colorado    122313      9719        118
 8:                    Connecticut    132712      9802        232
 9:                       Delaware    131664     11285        174
10:           District of Columbia    150549      6996        161
11: Federated States of Micronesia     76030        NA         NA
12:                        Florida    116410     10884        176
13:                        Georgia    105709     10695        201
14:                           Guam    130164      5064         84
15:                         Hawaii    137553      2588         36
16:                          Idaho     93668     10921        120
17:                       Illinois    115912     10989        202
18:                        Indiana     99582     11211        205
19:                           Iowa    109798     11860        194
20:                         Kansas    106034     10933        177
21:                       Kentucky    100169     10419        161
22:                      Louisiana     87647     10380        231
23:                          Maine    138220      5142         63
24:                       Maryland    140069      7653        161
25:                  Massachusetts    141591     10303        261
26:                       Michigan    116341     10017        210
27:                      Minnesota    115884     10739        136
28:                    Mississippi     89750     10826        249
29:                       Missouri    100065     10175        152
30:                        Montana    104118     10654        155
31:                       Nebraska    108326     11625        116
32:                         Nevada    100241     10868        184
33:                  New Hampshire    134543      7322        100
34:                     New Jersey    130374     11532        298
35:                     New Mexico    113151      9811        207
36:                 North Carolina    111723      9672        128
37:                   North Dakota     94285     14533        200
38:       Northern Mariana Islands    127158       354          3
39:                           Ohio    106219      9517        174
40:                       Oklahoma    101764     11613        187
41:                         Oregon    133830      4956         65
42:                   Pennsylvania    122576      9475        216
43:                    Puerto Rico    131977      4396         79
44:                   Rhode Island    143013     14409        257
45:                 South Carolina    103130     11612        191
46:                   South Dakota    108598     14082        230
47:                      Tennessee     92771     12712        184
48:                          Texas    110102     10328        177
49:                           Utah    100746     12979         74
50:                        Vermont    148041      3660         40
51:                 Virgin Islands     75287      3741         28
52:                       Virginia    121681      7982        133
53:                     Washington    123614      5942         77
54:                  West Virginia    105992      9159        161
55:                      Wisconsin    105228     11645        139
56:                        Wyoming     89392     10790        129
                             State Dose.rate Case.rate Death.rate

sample estimates:
       cor 
-0.1631419 

No comments:

Post a Comment

Moderated Comments: Be polite and quantitative in your remarks. Just because I am not always so doesn't mean you will get your commentary published.