Description Usage Format Source Examples
Full text of the papers in one-observation-per-paragraph form. Includes
only the ones in cord19_papers
(thus, deduplicated and
filtered).
1 |
A tibble with variables:
Unique identifier that can link to metadata and citations. SHA of the paper PDF.
Index of the paragraph within the paper (1, 2, 3)
Section (e.g. Introduction, Results, Discussion). The casing is standardized to title case.
Full text
https://www.kaggle.com/allen-institute-for-ai/CORD-19-research-challenge
1 2 3 4 5 6 | library(dplyr)
library(stringr)
# What are the most common section titles?
cord19_paragraphs %>%
count(section = str_to_lower(section), sort = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.