|
|
|
## License
|
|
---
|
|
license: cc-by-nc-sa-4.0
|
|
---
|
|
# Head and Neck Cancer Expression Data
|
|
|
|
This dataset contains gene expression data for head and neck cancer samples from the TCGA and CPTAC datasets. The data has been quantile normalized and batch effect corrected using ComBat.
|
|
|
|
## Files
|
|
|
|
- `combat_corrected_expression_data.csv`: Batch effect corrected expression data.
|
|
- `normalized_expression_data.csv`: Quantile normalized expression data.
|
|
|
|
## Usage
|
|
|
|
```python
|
|
from datasets import load_dataset
|
|
|
|
dataset = load_dataset("VatsalPatel18/head-and-neck-expression-data")
|
|
combat_corrected = dataset["combat_corrected_expression_data.csv"]
|
|
normalized_data = dataset["normalized_expression_data.csv"]
|
|
```
|
|
|
|
"""
|
|
|