All Projects → victorvicpal → COVID19_es

victorvicpal / COVID19_es

Licence: Apache-2.0 license
COVID19 Spain data

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to COVID19 es

covid19-api
Covid19 Data API (JSON) - LIVE
Stars: ✭ 20 (-42.86%)
Mutual labels:  covid19-data
covidthailand
Thailand Covid testing and case data gathered and combined from various sources for others to download or view
Stars: ✭ 126 (+260%)
Mutual labels:  covid19-data
covid19-timeseries
Covid19 timeseries data store
Stars: ✭ 38 (+8.57%)
Mutual labels:  covid19-data
cl-covid19
Explore COVID-19 data with Common Lisp, gnuplot, SQL and Grafana
Stars: ✭ 51 (+45.71%)
Mutual labels:  covid19-data
open-data-covid-19
Open Data Repository for the Covid-19 dataset.
Stars: ✭ 19 (-45.71%)
Mutual labels:  covid19-data
covid19.analytics
R package to obtain and analyze live data from the nCOVID19 coronavirus
Stars: ✭ 34 (-2.86%)
Mutual labels:  covid19-data
covid19-florida
Florida COVID19 Data parsed from Florida DOH Dashboard and PDF reports
Stars: ✭ 32 (-8.57%)
Mutual labels:  covid19-data
coronavirus-dashboard-api-R-sdk
Coronavirus (COVID-19) in the UK - API Service SDK for R
Stars: ✭ 23 (-34.29%)
Mutual labels:  covid19-data
covidbr-api
COVIDBR API —— API de tracking dos casos de COVID-19 no Brasil
Stars: ✭ 28 (-20%)
Mutual labels:  covid19-data
covid19-cli
A CLI for getting covid-19 coronavirus status of your district or state or country at lightning speed right on your terminal built using https://api.covid19india.org.
Stars: ✭ 19 (-45.71%)
Mutual labels:  covid19-data
COVID19-Data
This is an Open Aggregated Dataset for the COVID19 Cases in Malta
Stars: ✭ 16 (-54.29%)
Mutual labels:  covid19-data
COVID-19-DETECTION
Detect Covid-19 with Chest X-Ray Data
Stars: ✭ 43 (+22.86%)
Mutual labels:  covid19-data
Covidview
A complete COVID-19 tracker cum dashboard website made by me.
Stars: ✭ 24 (-31.43%)
Mutual labels:  covid19-data
corona-jena
Erfassung und Visualisierung der Corona-Fallzahlen für Thüringen.
Stars: ✭ 13 (-62.86%)
Mutual labels:  covid19-data
PhoNER COVID19
COVID-19 Named Entity Recognition for Vietnamese (NAACL 2021)
Stars: ✭ 55 (+57.14%)
Mutual labels:  covid19-data
it-dgc-opendata
Open Data on the European Digital Covid Certificates (EU DCC) issued and acquired by the national platform
Stars: ✭ 25 (-28.57%)
Mutual labels:  covid19-data
COVID19
A web app to display the live graphical state-wise reported corona cases in India so far. It also shows the latest news for COVID-19. Stay Home, Stay Safe!
Stars: ✭ 122 (+248.57%)
Mutual labels:  covid19-data
covid-19
An app made with Flutter to track COVID-19 case counts.
Stars: ✭ 47 (+34.29%)
Mutual labels:  covid19-data
coronainfobd
Real-time corona-virus tracker of Bangladesh 🇧🇩 which includes latest updates, data visualization, public awareness from WHO and some advice to aware people. 🥰❤
Stars: ✭ 46 (+31.43%)
Mutual labels:  covid19-data
CoronaCord
Discord bot that displays the latest coronavirus statistics. Currently serving over 5,000 communities on Discord.
Stars: ✭ 23 (-34.29%)
Mutual labels:  covid19-data

COVID19 Spain cases

Data

All raw data is directly downloaded from Ministerio de Sanidad website, which daily updates the statistics from the COVID19 epidemy. The downloaded archives are PDF files that are transformed into csv files in order to better analyze them.

Repo Structure

.
├── data
│   ├── csv_agedata
│   ├── csv_data
│   ├── final_data
│   ├── info_data
│   └── pdf_data
├── imgs
├── notebooks
└── src

Data structure

data
├── csv_agedata
│   ├── COVID_es_[DATE].csv
├── csv_data
│   ├── COVID_es_[DATE].csv
├── final_data
│   └── dataCOVID19_es.csv
├── info_data
│   ├── PoblaciónCCAA.csv
│   ├── death_rate.csv
│   └── poblacio?\201n_edades.csv
└── pdf_data
    ├── Actualizacion_[XX]_COVID-19.pdf
  • Original data are gathered in data/pdf_data
  • csvs from original data by date are gathered in data/csv_data (Cases) and data/agecsv_data (Total per age)
  • info_data contains extra data from sources such as Instituto Nacional de Estadística
  • final_data contains the csv file dataCOVID19_es.csv which is daily updated.
  • By default all special characters included in PDF tables are removed. If there are inconsistencies in the data on a certain date, please review the table footer of the corresponding PDF.

FINAL DATA (dictionary)

Column Meaning
CCAA Spanish Autonomous community
fecha Date
casos Cases
nuevos Number of new cases compared to the previous day
IA Cumulative incidence
Hospitalizados Number of hospitalized patients
HospitalizadosNuevos Number of hospitalized patients
UCI Number of patients requiring Intensive care unit assistance
UCINuevos Number of new patients requiring Intensive care unit assistance
muertes Number of deaths
muertesNuevos Number of new deaths
curados Number of healed patients
curadosNuevos Number of new healed patients
PCR Polymerase chain reaction
testrap Total quick tests performed
postestrap Total positive quick tests
posTOTAL Total positive tests

AGE DATA (dictionary)

Column Meaning
age Age range
fecha date
Conf{V} Confirmed cases
Hosp{V} Hospitalized patients
Hosp{V}% Hospitalized patients (%)
UCI{V} Patients requiring Intensive care unit assistance
UCI{V}% Patients requiring Intensive care unit assistance (%)
Fall{V} Deaths
Fall{V}% Deaths (%)
Let{V} Mortality (%)
Variable {V} Meaning
Total {T} Total
Mujer {M} Woman
Hombre {H} Man

Scripts

The src folder contains the scripts to get the data download_pdf.py & get_pdf_today.py, to transform pdf to csv pdf_to_csv.py or get_age_tab.py and to get dataCOVID19_es.csv file > join_data.py.

Notebooks

The notebooks folder contains some examples of epidemologic models such as SIRModel.ipynb, SEIRModel.ipynb or LogisticCurve.ipynb.

Contribute

Feel free to contact me or make a pull-request if you want to change/add anything.

Special thanks to Pedro Vélez and covid-19-stats for their contribution to this repo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].