mstz commited on
Commit
5e8b1f9
·
1 Parent(s): b858b60

Upload heart.py

Browse files
Files changed (1) hide show
  1. heart.py +13 -14
heart.py CHANGED
@@ -1,7 +1,6 @@
1
  """Heart"""
2
 
3
  from typing import List
4
- from functools import partial
5
 
6
  import datasets
7
 
@@ -10,19 +9,19 @@ import pandas
10
 
11
  VERSION = datasets.Version("1.0.0")
12
  _BASE_FEATURE_NAMES = [
13
- "age"
14
- "is_male"
15
- "type_of_chest_pain"
16
- "resting_blood_pressure"
17
- "serum_cholesterol"
18
- "fasting_blood_sugar"
19
- "rest_electrocardiographic_type"
20
- "maximum_heart_rate"
21
- "has_exercise_induced_angina"
22
- "depression_induced_by_exercise"
23
- "slope_of_peak_exercise"
24
- "number_of_major_vessels_colored_by_flourosopy"
25
- "thal"
26
  "has_hearth_disease"
27
  ]
28
 
 
1
  """Heart"""
2
 
3
  from typing import List
 
4
 
5
  import datasets
6
 
 
9
 
10
  VERSION = datasets.Version("1.0.0")
11
  _BASE_FEATURE_NAMES = [
12
+ "age",
13
+ "is_male",
14
+ "type_of_chest_pain",
15
+ "resting_blood_pressure",
16
+ "serum_cholesterol",
17
+ "fasting_blood_sugar",
18
+ "rest_electrocardiographic_type",
19
+ "maximum_heart_rate",
20
+ "has_exercise_induced_angina",
21
+ "depression_induced_by_exercise",
22
+ "slope_of_peak_exercise",
23
+ "number_of_major_vessels_colored_by_flourosopy",
24
+ "thal",
25
  "has_hearth_disease"
26
  ]
27