nychealth / coronavirus-data

This repository contains data on Coronavirus Disease 2019 (COVID-19) in New York City (NYC), from the NYC Department of Health and Mental Hygiene.

Home Page:https://www1.nyc.gov/site/doh/covid/covid-19-data.page

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vaccine stats?

jakedobkin opened this issue · comments

Hi,

When will the data underlying this page be made available on Github? https://www1.nyc.gov/site/doh/covid/covid-19-data-vaccines.page

Thanks,

Jake

For now I'm manually downloading it and compiling it here: https://github.com/lukegil/covid-19/tree/main/raw_data/nyc/covid19-vaccine

Checking in on this one! It would be great if the sheets powering the Tableau viz on the city site were up on Github!

Still checking in on this! I noticed you guys added the vax zipcode to the Tableau but it would make life much easier for us if it were on github too!

+1 on this issue. Is there a reliable endpoint for the Tableau dashboard? download of a .csv? It only now allows for an export of the tab file.

+1 on this issue again. I would appreciate being able to download this data via github.

I've made a Tableau scraper library in python, it would be possible to extract the data daily in a Github action with :

from tableauscraper import TableauScraper as TS

url = 'https://public.tableau.com/views/COVID-19VaccineTrackerDashboard_16153822244270/Dosesadministered'

ts = TS()
ts.loads(url)

workbook = ts.getWorkbook()

for t in workbook.worksheets:
    print(f"worksheet name : {t.name}")
    print(t.data)

https://replit.com/@bertrandmartel/TableauCovidVaccine

I've set up a repository extracting the data every day from this Tableau dashboard : https://github.com/bertrandmartel/covid19-nyc-vaccine-tracker