Update README.md
Browse files
README.md
CHANGED
@@ -74,7 +74,53 @@ dataset_info:
|
|
74 |
num_examples: 569
|
75 |
download_size: 141996
|
76 |
dataset_size: 139405
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
---
|
78 |
-
#
|
79 |
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
num_examples: 569
|
75 |
download_size: 141996
|
76 |
dataset_size: 139405
|
77 |
+
license: cc
|
78 |
+
language:
|
79 |
+
- en
|
80 |
+
pretty_name: breast-cancer-wisconsin
|
81 |
+
size_categories:
|
82 |
+
- n<1K
|
83 |
---
|
84 |
+
# breast-cancer-wisconsin
|
85 |
|
86 |
+
## Overview
|
87 |
+
|
88 |
+
The dataset contains features computed from digitized images of breast cancer biopsies, which are used to predict
|
89 |
+
whether a breast mass is benign (non-cancerous) or malignant (cancerous).
|
90 |
+
|
91 |
+
## Dataset Details
|
92 |
+
|
93 |
+
The original dataset is the [Breast Cancer Wisconsin (Diagnostic)](https://archive.ics.uci.edu/dataset/17/breast+cancer+wisconsin+diagnostic). This file concerns credit card applications.
|
94 |
+
The dataset is based on features computed from digitized images of breast mass tissue samples. These features are computed from a digitized image of a fine needle aspirate (FNA) of a breast mass.
|
95 |
+
Based on these features, the goal is to predict whether the mass is benign or malignant.
|
96 |
+
|
97 |
+
```latex
|
98 |
+
@inproceedings{Street1993NuclearFE,
|
99 |
+
title={Nuclear feature extraction for breast tumor diagnosis},
|
100 |
+
author={William Nick Street and William H. Wolberg and Olvi L. Mangasarian},
|
101 |
+
booktitle={Electronic imaging},
|
102 |
+
year={1993},
|
103 |
+
url={https://api.semanticscholar.org/CorpusID:14922543}
|
104 |
+
}
|
105 |
+
```
|
106 |
+
|
107 |
+
- Dataset Name: breast-cancer-wisconsin
|
108 |
+
- Language: English
|
109 |
+
- Total Size: 569 demonstrations
|
110 |
+
|
111 |
+
## Contents
|
112 |
+
The dataset consists of a data frame with 30 columns + diagnosis = M (37,3%) and B (62,7%).
|
113 |
+
|
114 |
+
|
115 |
+
## How to use
|
116 |
+
|
117 |
+
```python
|
118 |
+
from datasets import load_dataset
|
119 |
+
|
120 |
+
dataset = load_dataset("AiresPucrs/breast-cancer-wisconsin", split='train')
|
121 |
+
|
122 |
+
```
|
123 |
+
|
124 |
+
## License
|
125 |
+
|
126 |
+
This dataset is licensed under a [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) (CC BY 4.0) license.
|