Update README.md
Browse files
README.md
CHANGED
@@ -53,21 +53,22 @@ You need to use separate code, audio, text, and natural language together with t
|
|
53 |
### Model Description
|
54 |
--
|
55 |
###############################################
|
|
|
|
|
56 |
from ucimlrepo import fetch_ucirepo
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
# data (as pandas dataframes)
|
62 |
X = breast_cancer_wisconsin_original.data.features
|
63 |
y = breast_cancer_wisconsin_original.data.targets
|
64 |
-
|
65 |
-
|
66 |
print(breast_cancer_wisconsin_original.metadata)
|
67 |
-
|
68 |
-
|
69 |
print(breast_cancer_wisconsin_original.variables)
|
70 |
-
|
71 |
##########################################################
|
72 |
-
|
73 |
# 0 0.93 0.99 0.96 79
|
|
|
53 |
### Model Description
|
54 |
--
|
55 |
###############################################
|
56 |
+
-
|
57 |
+
```python
|
58 |
from ucimlrepo import fetch_ucirepo
|
59 |
+
fetch dataset
|
60 |
+
beast_cancer_wisconsin_original = fetch_ucirepo(id=15)
|
61 |
+
|
62 |
+
data (as pandas dataframes)
|
|
|
63 |
X = breast_cancer_wisconsin_original.data.features
|
64 |
y = breast_cancer_wisconsin_original.data.targets
|
65 |
+
|
66 |
+
metadata
|
67 |
print(breast_cancer_wisconsin_original.metadata)
|
68 |
+
|
69 |
+
variable information
|
70 |
print(breast_cancer_wisconsin_original.variables)
|
71 |
+
```
|
72 |
##########################################################
|
73 |
-
|
74 |
# 0 0.93 0.99 0.96 79
|