mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-31 00:04:05 -05:00
fix(curriculum): added missing backticks to variables (#47692)
Added missing backticks to variables to medical-data-visualizer.md
This commit is contained in:
@@ -28,18 +28,18 @@ File name: medical_examination.csv
|
||||
|
||||
| Feature | Variable Type | Variable | Value Type |
|
||||
|:-------:|:------------:|:-------------:|:----------:|
|
||||
| Age | Objective Feature | age | int (days) |
|
||||
| Height | Objective Feature | height | int (cm) |
|
||||
| Weight | Objective Feature | weight | float (kg) |
|
||||
| Gender | Objective Feature | gender | categorical code |
|
||||
| Systolic blood pressure | Examination Feature | ap_hi | int |
|
||||
| Diastolic blood pressure | Examination Feature | ap_lo | int |
|
||||
| Cholesterol | Examination Feature | cholesterol | 1: normal, 2: above normal, 3: well above normal |
|
||||
| Glucose | Examination Feature | gluc | 1: normal, 2: above normal, 3: well above normal |
|
||||
| Smoking | Subjective Feature | smoke | binary |
|
||||
| Alcohol intake | Subjective Feature | alco | binary |
|
||||
| Physical activity | Subjective Feature | active | binary |
|
||||
| Presence or absence of cardiovascular disease | Target Variable | cardio | binary |
|
||||
| Age | Objective Feature | `age` | int (days) |
|
||||
| Height | Objective Feature | `height` | int (cm) |
|
||||
| Weight | Objective Feature | `weight` | float (kg) |
|
||||
| Gender | Objective Feature | `gender` | categorical code |
|
||||
| Systolic blood pressure | Examination Feature | `ap_hi` | int |
|
||||
| Diastolic blood pressure | Examination Feature | `ap_lo` | int |
|
||||
| Cholesterol | Examination Feature | `cholesterol` | 1: normal, 2: above normal, 3: well above normal |
|
||||
| Glucose | Examination Feature | `gluc` | 1: normal, 2: above normal, 3: well above normal |
|
||||
| Smoking | Subjective Feature | `smoke` | binary |
|
||||
| Alcohol intake | Subjective Feature | `alco` | binary |
|
||||
| Physical activity | Subjective Feature | `active` | binary |
|
||||
| Presence or absence of cardiovascular disease | Target Variable | `cardio` | binary |
|
||||
|
||||
## Tasks
|
||||
|
||||
|
||||
Reference in New Issue
Block a user