Add another plot

This commit is contained in:
nlitkowski 2021-05-26 17:10:05 +02:00
parent 6eb390fb21
commit 16ee9f201b

View File

@ -81,3 +81,15 @@ plot_ly(
name = "New vaccines"
)
# World - deaths by country -----------------------------------------------
plot_ly(
cov,
x = cov$date,
y = cov$new_deaths,
name = "New deaths",
type = "scatter",
mode = "lines",
connect_gaps = TRUE,
color = cov$location
)