In this report we take cursory look at slot-level COVID appointment availability data as gathered by the Vaccine Spotter project.
by state
checked_at
timeWe can compare appointment availability by the demographics of the area that the distribution location is in. The most granual level is the zip-code. Of course, people can travel to locations outside of their zip-code, and so a better analysis would, for every zip code, take an average of the nearby locations weighted by their distance. The data for this section is for the month of April 2021 only.
We do univariate correlations between vulnerability indices like SVI and availability statistics. In this plot, the points represent individual zip-codes. The red line is a linear fit of the relationship between the vulnerability statistic and the availbility statistic.
Note that for ‘last available’ (min lead time), less is better.
Note: because we don’t have vaccination data on the zip-code level, we can’t (unlike below for counties) adjust slots/person by coverage, nor can we plot the SVI statistics against vaccination rates on a zip-code level.
How does appointment availability relate to vaccinations? Unfortunately we don’t have vaccination data on the zip-code level, so we’ll do this analysis on a county level. Vaccination counts by county by day are pulled from CovicActNow.org. The outcome we look at is the number of vaccinations that happened in the month that we’re looking at. We run a simple linear regression with counties as units:
##
## ===========================================================================
## Dependent variable:
## ---------------------------------------------------
## n_vax/population log(n_vax)
## (1) (2) (3) (4) (5)
## ---------------------------------------------------------------------------
## % hesitant (CDC) -0.438*** -1.815***
## (0.036) (0.526)
## Trump vote share -0.085*** -0.563***
## (0.005) (0.073)
## Prior vax rate 0.001*** 0.023***
## (0.0001) (0.002)
## Slots/Person (workday) 0.007*** 0.007*** 0.083*** 0.072***
## (0.002) (0.002) (0.030) (0.025)
## Slots/Person (weekend) 0.276*** 0.124*** 2.755*** 1.194***
## (0.024) (0.020) (0.378) (0.281)
## Slots/Person (evenings) 3.012*** 1.887*** 20.205*** 11.148***
## (0.181) (0.195) (2.947) (2.829)
## Avg range (hrs) -0.0004*** -0.0002*** -0.003*** -0.003***
## (0.00003) (0.00003) (0.001) (0.0004)
## Avg lead time (hrs) 0.0003*** 0.0002*** 0.002*** 0.002***
## (0.00004) (0.00003) (0.001) (0.0005)
## Population (log) 1.195*** 1.131*** 1.085***
## (0.009) (0.009) (0.009)
## Intercept 0.095*** 0.191*** -4.583*** -3.840*** -3.528***
## (0.010) (0.022) (0.183) (0.195) (0.351)
## ---------------------------------------------------------------------------
## Observations 2,145 1,587 2,145 2,145 1,587
## Adjusted R2 0.697 0.805 0.937 0.942 0.970
## ===========================================================================
## Note: *p<0.1; **p<0.05; ***p<0.01