Vaccinated | R Documentation |
Number of people with at least one vaccination against SARS-COV2 as of Nov 2021
Vaccinated
A data frame with 15 observations on the following 3 variables.
country
Name of European country.
vaccinated
Percentage of people vaccinated against SARS-COV2.
fully_vaccinated
Percentage of people fully vaccinated against SARS-COV2.
These data are the number of people with at least one vaccination against SARS-COV2 (a.k.a Covid-19) as per the week ending the 12th November 2021, per hundred for countries in Europe with a population greater than 10 million. Fully vaccinated refers to having completed all vaccinations (including boosters) for that country.
data(Vaccinated, package = "R4HCR")
heights <- Vaccinated$vaccinated
names <- Vaccinated$country
bp <- barplot(height = heights,
col = "white",
ylim=c(0,100),
names.arg = names,
cex.names = 0.9,
las = 2,
ylab = "People vaccinated per 100")
# using round here to save space
labels <- round(Vaccinated$vaccinated,0)
text(x = bp, y = labels-2, labels = labels,
cex = 0.9, pos = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.