Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Superset | 52,284 | 2 | 19 hours ago | 3 | April 29, 2022 | 1,338 | apache-2.0 | TypeScript | ||
Apache Superset is a Data Visualization and Data Exploration Platform | ||||||||||
Facets | 7,131 | 3 | 1 | 12 days ago | 3 | July 24, 2019 | 82 | apache-2.0 | Jupyter Notebook | |
Visualizations for machine learning datasets | ||||||||||
Yellowbrick | 3,941 | 31 | 36 | 3 months ago | 24 | February 19, 2022 | 88 | apache-2.0 | Python | |
Visual analysis and diagnostic tools to facilitate machine learning model selection. | ||||||||||
Missingno | 3,472 | 76 | 41 | 3 months ago | 25 | February 27, 2022 | 8 | mit | Python | |
Missing data visualization module for Python. | ||||||||||
Feature Selector | 2,067 | 4 months ago | 37 | gpl-3.0 | Jupyter Notebook | |||||
Feature selector is a tool for dimensionality reduction of machine learning datasets | ||||||||||
Autoviz | 1,330 | 6 | 10 minutes ago | 52 | June 17, 2022 | apache-2.0 | Python | |||
Automatically Visualize any dataset, any size with a single line of code. Created by Ram Seshadri. Collaborators Welcome. Permission Granted upon Request. | ||||||||||
Open3d Ml | 1,291 | 2 months ago | 78 | other | Python | |||||
An extension of Open3D to address 3D Machine Learning tasks | ||||||||||
What If Tool | 804 | 3 | a month ago | 38 | October 12, 2021 | 80 | apache-2.0 | HTML | ||
Source code/webpage/demos for the What-If Tool | ||||||||||
Panama Papers Dataset 2016 | 701 | 7 years ago | 5 | gpl-3.0 | Jupyter Notebook | |||||
Structured data about Panama papers collected from official ICIJ website | ||||||||||
Geojs | 404 | 33 | 10 | 4 days ago | 109 | October 10, 2022 | 45 | apache-2.0 | JavaScript | |
High-performance visualization and interactive data exploration of scientific and geospatial location aware datasets |
This repository hosts workflows to process several data sources and cleaned datasets for COVID-19 cases across the world.
owid-covid-data.json
: European Centre for Disease Prevention and Control (ECDC) historical world-wide case data (currently through Our World in Data).
output/cases/cases_us_states_nyt.csv
: US state-level historical case data from New York Times.
data_source/metadata/worldbank/country_metadata.csv
from World Bank.ISO-3166-Countries-with-Regional-Codes
.cntry_stat_owid.json
: ECDC historical data merged with Worldbank's classification of world regions. Used in:
cntry_stat_owid.json
here.us_state_nyt.json
: New York Time historical data. Used in:
Cases on cruise ships were classified as "international". These data were not shown in the visualizations independently but were included in cases within the data for the "World".
WHO dataset is deprecated. See Our World in Data's announcement: Why we stopped relying on data from the World Health Organization
coordinates.csv
: Lat Lng location data from JHU dataset (Unreliable).
ISO 3166-1 Alpha-3 country code conversion table.
output/metadata/country/country_name_code.csv
: a conversion table from country name to code (ISO 3166 Alpha 3). Note that multiple names point to the same code.output/metadata/country/country_code_name.csv
: a conversion table from country code (ISO 3166 Alpha 3) to country name. The shortest country names are picked from the above dataset.Install pandas and snakemake using conda
.
conda install -c bioconda -c conda-forge snakemake pandas numpy
or pip
:
pip install pandas snakemake numpy