File size: 3,274 Bytes
bbe9312 d0e5a72 bbe9312 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 5458501 d0e5a72 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
---
license: cc-by-4.0
task_categories:
- text-classification
language:
- en
tags:
- medical
- systematic-review
- research-papers
pretty_name: Combined Medical Systematic Reviews
size_categories:
- 1K<n<10K
---
# 🏥 Combined Medical Systematic Reviews Dataset
## Dataset Description
This dataset combines 23 systematic review datasets from various medical domains, totaling 135 papers. The dataset includes papers from systematic reviews in fields such as virology, dementia, anxiety disorders, and general medical research.
### Data Fields
The dataset includes the following standardized fields:
- `title`: The title of the paper
- `abstract`: The paper's abstract
- `year`: Publication year (when available, -1 if not available)
- `dataset_name`: The source dataset name
- `dataset_domain`: The medical domain of the source dataset
### Source Datasets
The following datasets were combined (sorted by number of papers):
| Dataset | Papers | Domain |
|---------|---------|---------|
| kwok_2020 | 6 | medical |
| wolters_2018 | 6 | medical |
| bos_2018 | 6 | medical |
| bannach-brown_2019 | 6 | medical |
| van_dis_2020 | 6 | medical |
| donners_2021 | 6 | medical |
| muthu_2021 | 6 | medical |
| leenaars_2020 | 6 | medical |
| jeyaraman_2020 | 6 | medical |
| meijboom_2021 | 6 | medical |
| menon_2022 | 6 | medical |
| smid_2020 | 6 | medical |
| welling_2021 | 6 | medical |
| appenzeller-herzog_2019 | 6 | medical |
| moran_2021 | 6 | medical |
| van_der_waal_2022 | 6 | medical |
| oud_2018 | 6 | medical |
| leenaars_2019 | 6 | medical |
| van_de_schoot_2018 | 6 | medical |
| van_der_valk_2021 | 6 | medical |
| sep_2021 | 6 | medical |
| muthu_2022 | 5 | medical |
| brouwer_2019 | 4 | medical |
### Usage
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("sumuks/combined_medical_reviews")
# Access the papers
papers = dataset["train"]
# Example: Get papers from a specific domain
dementia_papers = papers.filter(lambda x: "dementia" in x["dataset_domain"].lower())
# Example: Get papers from a specific year
papers_2020 = papers.filter(lambda x: x["year"] == 2020)
```
### Dataset Creation
This dataset was created by:
1. Collecting systematic review datasets from the [ASReview SYNERGY dataset](https://github.com/asreview/synergy-dataset)
2. Fetching paper metadata (title, abstract, year) from OpenAlex API
3. Standardizing and combining the data into a single dataset
4. Removing duplicates based on title and abstract
### Limitations
- The dataset contains only a sample of papers from each source dataset
- Some papers may be missing abstracts or other metadata
- The dataset focuses on English-language papers
- The quality of metadata depends on OpenAlex data
### Citation
When using this dataset, please cite both this dataset and the original ASReview SYNERGY dataset:
```bibtex
@misc{combined_medical_reviews,
title = {Combined Medical Systematic Reviews Dataset},
author = {OpenHands AI},
year = {2024},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/sumuks/combined_medical_reviews}
}
```
### License
This dataset is released under CC-BY 4.0 license. The data inherits licenses from:
1. ASReview SYNERGY dataset
2. OpenAlex API data
|