All Projects → dgunning → Cord19

dgunning / Cord19

Licence: apache-2.0
a repo for the cord19 challenge

Projects that are alternatives of or similar to Cord19

Applied Plotting Charting And Data Representation In Python
University of Michigan on Coursera
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Nd889
Udacity Artificial Intelligence Nanodegree
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Eemeter
‼️ MOVED TO https://github.com/openeemeter/eemeter - Core computation engine for the Open Energy Efficiency Meter
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Brent
bayesian graphical modelling and a bit of do-calculus for discrete data.
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Datascience
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Johansen
Python implementation of the Johansen test for cointegration
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Futures strategy
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Ai Doctor
Machine learning discord bot , Detects diseases within seconds with just an xray scan
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Mariadb.org Tools
This project collects together various small scripts or projects that are used for MariaDB development, but for one reason or another do not make sense to keep inside the main MariaDB source tree.
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Spark Cloudant
Cloudant integration with Spark as Spark SQL external datasource
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Cs224n
Random stuff related to CS224N that I'm making public. Not the main repository.
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Redistrict
Gerrymandering and Computational Redistricting
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Jupyter keyboard shortcuts snippets
Materials for a talk I gave to Metis Data Science Bootcamp on useful Jupyter Keyboard Shortcuts and Text Snippets
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Heat and trees
Using HoloViz to explore relationship between surface temperature and tree density
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Geometric Textures
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Batch Effect Removal Benchmarking
A benchmark of batch-effect correction methods for single-cell RNA sequencing data
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Pytorch Notebooks
random pytorch hacks
Stars: ✭ 26 (-3.7%)
Mutual labels:  jupyter-notebook
Covid
Bayesian modeling of COVID-19
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Voice Cloner
This is a phonemic multilingual (Russian-English) Implementation of Transfer Learning from Speaker Verification to Multispeaker Text-To-Speech Synthesis.
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Rainbow Is All You Need
Rainbow is all you need! A step-by-step tutorial from DQN to Rainbow
Stars: ✭ 938 (+3374.07%)
Mutual labels:  jupyter-notebook

COVID 19 Open Research Data Challenge Code

This repo contains code and notebooks for the COVID-19 Open Research Dataset Challenge (CORD-19) on kaggle

Using the library

On Kaggle

Clone and modify the Kaggle notebook

Off Kaggle

  1. Download the data

Login to Kaggle and download the CORD Research Challenge data and extract to a folder called data.

You can also use the kaggle cli bash kaggle datasets download allen-institute-for-ai/CORD-19-research-challenge `` 2. Install

Install the library using pip

pip install git+https://github.com/dgunning/cord19.git
dir data\CORD-19-research-challenge

Data directory

Usage

The library is meant for use in Jupyter or Kaggle notebooks

from cord import ResearchPapers

research_papers = ResearchPapers.load()

After loading the research papers you can display in a notebook

research_papers

Show research paper

Search

The search function returns the items that match the search query

research_papers.searchbar('vaccine transmission'

Cord Searchbar

Search Bar

A more convenient way to search is through the search bar. This displays a search widgets in Jupyter notebook

research_papers.searchbar('vaccine transmission')

Cord Searchbar

Selecting Subsets of Research Papers

There are many ways to select subsets of research papers including

  • Papers since SARS research_papers.since_sars()
  • Papers since SARS-COV-2 research_papers.since_sarscov2()
  • Papers before SARS research_papers.before_sars()
  • Papers before SARS-COV-2 research_papers.before_sarscov2()
  • Papers before a date research_papers.before('1989-09-12')
  • Papers after a date research_papers.after('1989-09-12')
  • Papers that contains a string research_papers.contains("Fauci", column='authors')
  • Papers that match a string (using regex) research_papers.match('H[0-9]N[0-9]')

Selecting individual Papers

You can select individual papers by using Python indexing []

research_papers[200]

Show research paper

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].