rudyvdbrink commited on
Commit
e39874c
·
verified ·
1 Parent(s): 6bd03dc

Create README.md

Browse files

# Dataset Card for PubMed Citations Dataset

## Dataset Description

This dataset contains metadata and citation information for 20,000 neuroscience-related articles indexed by PubMed. The data is intended for tasks related to bibliometrics, scientific impact prediction, citation analysis, and natural language processing on biomedical literature.

Half of the articles have been cited within the first five years following publication, the other half has not.


![citation_count_histogram.png](https://cdn-uploads.huggingface.co/production/uploads/674c3ac8df62f20ecb6c5885/csERVqkjAQNI8UTX7LSu3.png)


### Dataset Structure

- **Format:** CSV
- **Rows:** 20,000 entries
- **Columns:** 10

| Column Name | Description | Type |
|------------------------------------|-----------------------------------------------------------------------------|---------|
| `pmid` | PubMed ID (unique identifier for each article) | int64 |
| `title` | Title of the article | string |
| `abstract` | Abstract text of the article | string |
| `journal` | Journal where the article was published | string |
| `pub_year` | Year of publication | int64 |
| `pub_month` | Month of publication | int64 |
| `authors` | Comma-separated list of authors | string |
| `citation_count_within_one_year` | Number of citations within 1 year of publication (from OpenCitations API) | float64 |
| `citation_count_within_five_years` | Number of citations within 5 years of publication (from OpenCitations API) | float64 |

### Example Entry

```json
{
"pmid": 27466332,
"title": "Catecholaminergic Neuromodulation Shapes Intrinsic MRI Functional Connectivity in the Human Brain",
"abstract": "The brain commonly exhibits spontaneous (i.e.,...",
"journal": "The Journal of neuroscience",
"pub_year": 2016,
"pub_month": 7,
"authors": "van den Brink Ruud L, Pfeffer Thomas, ...",
"citation_count_within_one_year": 8.0,
"citation_count_within_five_years": 51.0
}
```

## Source Data

- **Original source:** PubMed
- **Citation counts:** Retrieved via [OpenCitations API](https://opencitations.net/)
- **License:** Please check terms of use for PubMed and OpenCitations before redistribution.

## Intended Uses

- Predicting citation count based on article metadata and abstract.
- Studying the relationship between article content and citation patterns.
- Benchmarking NLP models on biomedical abstracts.

## Dataset Creation

- Articles were sampled from PubMed.
- Citation counts were collected using the OpenCitations API for each pmid.
- Data was cleaned to ensure all entries have complete fields.

## Data Splits

No predefined splits. Users may create splits (e.g., train/test/validation) as needed.

## Usage Example (Python/Huggingface Datasets)

```python
import datasets

dataset = datasets.load_dataset('csv', data_files='NeuroscienceCitationDatabase.csv')
```

## Limitations

- Only includes articles with complete metadata and citation data.
- Citation data is as provided by OpenCitations; coverage may not be exhaustive.
- Abstracts may contain formatting artifacts.

## Citation

If you use this dataset, please cite PubMed and OpenCitations appropriately.

Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - biology
9
+ - medical
10
+ size_categories:
11
+ - 10K<n<100K
12
+ ---