Introduction
A breakdown of key endpoints and data structures used by the API
This section will describe the schema of key objects used for the request and returned in the response by the Health Scoring API as well as ways to present the scores to users. Sub sections provide information about other endpoints for generating scores and related output.
Default Health Scoring Endpoint
The default health scoring endpoint on the API allows you to generate point in time scores for more than one user in a batch. Full details of the endpoint and its definition, along with tools for testing it can be found under the API Reference page.
Request
When sending user data for scoring the key object used will be the Predictors object. This is where you able to specify the predictors and biomarkers for a user. This is specified in an array of predictorobjects using the observation_code parameter. The list of possible biomarkers and predictors that are supported by the API can be found on the next page. We support the use of LOINCs for specifying biomarkers and predictors to be used for scoring (where a mapping is available), as well as our own observation codes.
Mode of operation
The API supports 3 different modes when submitting a request. This is specified in the mode property in the scoring_event_metadata node of the input request object sent to the API. These are:
score- Simply take the input biomarker data and generate scores for the data.validate- This option will only validate the input biomarker data to ensure the values are in the correct range for the given unit for the biomarker, and the gender of the user. No scores will be generated when using this option.validate_and_score- This is a combination of the previous 2 options. This will validate each biomarker and generate scores based on the input data. The validations will be returned alongside each scoring event result for a user.
{
"scoring_event_metadata": {
"event_id": "37634d03-45a0-4fab-9809-fec094eb5891", // Unique identifier for the scoring event. This could correspond to a lab test or panel.
"event_asof_dtutc": "2026-01-17T21:21:51.632Z", // Date of the event or date of the lab test.
"mode": "validate_and_score"
},
"user_data": [
{
"uid_ext": "0b4237fa-2cf9-41f6-8593-da3beec76200", //An ID for the user as it may exist in your system
"predictors": [
{
"id": "6b0ca208-86a7-440d-b0c1-0818ad53002e", //A unique ID for this biomarker in this scoring event. For example this ID coulbe for the instance of the biomarker included in the lab test for this user.
"observation_code": "30525-0",
"value": "28",
"unit": "a"
},
{
"id": "aa653593-7071-4266-b010-953cefff9eb3",
"observation_code": "46098-0",
"value": "male",
"unit": ""
},
{
"id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
"observation_code": "8302-2",
"value": "78",
"unit": "inches"
},
{
"id": "1f796753-f375-494a-8539-b0f140ff4f56",
"observation_code": "29463-7",
"value": "210",
"unit": "lbs"
},
{
"id": "8835a752-bc03-473c-a4ba-37387c045f14",
"observation_code": "64219-9",
"value": "0",
"unit": "{pack}/d.a"
},
{
"id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
"observation_code": "4548-4",
"value": "5.4",
"unit": "%"
},
{
"id": "a624e601-d519-40d9-b972-b45e15d2a43e",
"observation_code": "2885-2",
"value": "8.1",
"unit": "g/dL"
},
{
"id": "3197ae19-9438-40d5-aded-67228b498a9e",
"observation_code": "2571-8",
"value": "40",
"unit": "mg/dL"
},
{
"id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
"observation_code": "10835-7",
"value": "6.2",
"unit": "mg/dL"
},
{
"id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
"observation_code": "1751-7",
"value": "4.8",
"unit": "g/dL"
},
{
"id": "f644ac87-420c-4656-8f07-daa6350bca0c",
"observation_code": "17861-6",
"value": "9.6",
"unit": "mg/dL"
},
{
"id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
"observation_code": "2160-0",
"value": "0.83",
"unit": "mg/dL"
},
{
"id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
"observation_code": "2498-4",
"value": "106",
"unit": "ug/dL"
},
{
"id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
"observation_code": "2086-7",
"value": "76",
"unit": "mg/dL"
},
{
"id": "852a0141-90a0-4397-9480-081786fedc54",
"observation_code": "1975-2",
"value": "0.7",
"unit": "mg/dL"
},
{
"id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
"observation_code": "13457-7",
"value": "80",
"unit": "mg/dL"
}
]
}
]
}Response
The response from the scoring event is made up of key objects that provide information about a user's health across different health domains.
1. scoring_event_metadata
Contains information about the request being sent.
| Field | Description |
|---|---|
event_id | A unique identifier to track the event. Passed back in the output as-is. |
event_asof_dtutc | A datetime for when the event was sent. |
2. user_data
An array of scoring events. Each entry contains the following properties:
uid_ext
The ID for the user being scored — an ID from your system used to track the user.
scoring_predictors
An array of predictor metadata objects used to score upon. Returned every time, including both given predictors (provided in the request) and sideways imputed predictors. Predictors are returned as LOINCs (matching the input format).
| Field | Description |
|---|---|
predictor_id | The unique identifier for the predictor instance from the original request, included for better mapping of the response to the original request. If the predictor in the response could not be mapped to any predictor in the original request, this will be a randomly generated UUID that you can use to track the predictor in the response. |
predictor_code | The code of the predictor. |
predictor_name | The name of the predictor. |
value | The value of the predictor as it was provided if sent in the request. |
unit | The unit of the predictor as it was provided if sent in the request. |
imputation_code | Where the predictor came from: GIVEN, FORWARD, BACKWARD, or SIDEWAYS. |
percentiles | The percentile for the predictor — what percentage of predictors for people in the same sex/age group this person's predictor is higher than. |
disease_scores
An array of objects containing scores associated with a particular health domain. See the default list of health domains.
| Field | Description |
|---|---|
disease_code | The code for the health domain. |
disease_concept_code | The concept code for the health domain (used for mapping in the response) |
disease_name | The name of the health domain |
age_to_score | The age the disease was scored at. |
info_ratio | The information ratio for the disease. |
score_percentile | The percentage of people in the same sex/age group that this user has a higher Volo Score than. |
health_score
The Volo Score for the user for the particular health domain.
| Field | Description |
|---|---|
health_score | The Volo Score for the disease. |
min_score | The minimum score for the disease (currently varies by gender only). |
max_score | The maximum score for the disease (currently varies by gender only). |
risk_ratios
The risk ratios for the user, associated with the health domain as calculated by the model.
| Field | Description |
|---|---|
your_risk_frac | The user's risk for the health domain. |
peer_risk_frac | The average risk of people within the user's sex/age group for the health domain. |
risk_ratio | The risk ratio for the health domain. |
disease_age
The Volo Age for the disease.
| Field | Description |
|---|---|
disease_age | The biological age for the disease. |
disease_age_delta | The difference between disease_age and the age the model scored at. |
predictor_attributions
An array of objects containing details about the attribution of the score to a particular predictor.
| Field | Description |
|---|---|
predictor_code | The code of the predictor. |
multiplier | The multiplier on the health score. Values > 1 indicate the predictor is increasing risk; values < 1 indicate the predictor is decreasing risk. The product of all attributions equals the inverse of risk_ratio. |
score_attribution | The portion of the score attributed to this predictor. All values sum to health_score. |
risk_attribution | The portion of the risk ratio attributed to this predictor. All values sum to risk_ratio. |
errors
A list of any errors or issues encountered during scoring for a particular user. Returned as an array of strings.
3. Validations
ValidationsAn array of objects returning validation information for each biomarker/predictor sent in the request.
| Field | Description |
|---|---|
id | The ID of the predictor that was validated. |
code | The observation code validated (internal codes mapping to input predictor/biomarker codes). See the full list. |
qa_status | Status of the validation process: PASS, FLAGGED, WARN, or FAIL. |
message | Additional information about the validation result. |
severity | The severity level of the validation result |
validated_value | The converted, acceptable value for the predictor based on the preferred UCUM unit. |
validated_unit | The preferred UCUM unit the converted value conforms to. |
return_code Values
| Code | Description |
|---|---|
valid_entry | Entry passes all validation checks. |
invalid_code | LOINC or observation code not found in database. |
invalid_value | Value format or content is invalid (used by custom validators). |
invalid_ucum_unit | Unit doesn't match expected unit for biomarker. |
not_pref_unit | Value provided in a non-preferred but convertible unit; conversion succeeded. |
invalid_unit_dimension | Unit doesn't match expected unit and conversion failed (incompatible or invalid unit). |
value_over_implausible_maximum | Value is below the implausible lower threshold. |
value_under_implausible_minimum | Value is above the implausible upper threshold. |
value_over_borderline_maximum | Value is below the borderline lower threshold. |
value_under_borderline_minimum | Value is above the borderline upper threshold. |
value_over_unusual_maximum | Value is below the unusual lower threshold. |
value_under_unusual_minimum | Value is above the unusual upper threshold. |
duplicate_observation_code | A duplicate biomarker was detected in the input request for a health event (time series scoring) or a user (batch scoring) |
severity Levels
| Level | Description |
|---|---|
IMPLAUSIBLE | Entry is definitely wrong (most severe). |
BORDERLINE | Entry is questionable with low confidence (moderate severity). |
UNUSUAL | Entry is uncommon but potentially valid (least severe). |
WARNING | Entry passed but with some level of warning (duplicates or slight variant from expected value) |
None | Entry passed; no severity level needed. |
{
"scoring_event_metadata": {
"event_id": "37634d03-45a0-4fab-9809-fec094eb5891",
"event_asof_dtutc": "2026-01-17T21:21:51.632Z"
},
"scoring_results": [
{
"uid_ext": "0b4237fa-2cf9-41f6-8593-da3beec76200",
"data": [
{
"scoring_predictors": [
{
"predictor_id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
"predictor_code": "10835-7",
"predictor_name": null,
"value": "6.2",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "199bd4d3-07ac-494f-93e4-d96979f86824",
"predictor_code": "2276-4",
"predictor_name": "Ferritin [Mass/volume] in Serum or Plasma",
"value": "89.6",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
"predictor_code": "2498-4",
"predictor_name": "Iron [Mass/volume] in Serum or Plasma",
"value": "106.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "120c6aff-1613-4a14-9a29-88803c8eef71",
"predictor_code": "77147-7",
"predictor_name": null,
"value": "117.25",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6b0ca208-86a7-440d-b0c1-0818ad53002e",
"predictor_code": "30525-0",
"predictor_name": "Age",
"value": "28.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "3d46e42d-3d6c-48c2-a5ce-4f983d445cca",
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "7ea7eac4-8e08-4fe9-a247-4e8fd70c7aa8",
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "19d6f380-34c1-46a3-a807-f88929d3a80f",
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 43.243649030088285,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "51259428-f822-4ddc-90c2-f92ec945f60d",
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.834844754068826,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "de9b1975-2227-41f5-b95b-2f352091038d",
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "04cbd6f4-6d4a-43ac-b499-e64c360b9b10",
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "24368f4b-83fa-4f4f-b76b-c1e9d2715847",
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "06e49b95-ff86-4161-b0e3-36c70e9467b9",
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b3ad03a5-33b6-4358-a6ed-8852ff57a619",
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.86487298060177,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "4f24d381-30bd-466a-aed4-35146d0e1665",
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "88c275c0-2003-4000-981e-82ed07c5ef36",
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.909915320401176,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b2031262-e260-4d65-934f-5ff85ed9f9b3",
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "f4b2c100-75b3-4d74-a40d-86e29b0e3334",
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.822833463455645,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "55aa69a6-c183-49dd-b823-914762134666",
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d90f7cd6-9516-48ee-b624-0f7a3c424a66",
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "fcd27c75-5c33-4a2b-80f0-e2380f2865f9",
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1b8bdde2-d513-4480-93dd-4b8c846749dd",
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "82356983-c8be-467c-9a6a-d9b8a4384408",
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6235b2f5-81f0-4ee4-8799-5c336351637a",
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "43e7b504-8612-4323-8bcc-e041afd03851",
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.672692330790944,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "44026eeb-bf6a-4ba8-a436-ebab962a9067",
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "63456bbd-1480-4041-ad34-00671f1f3ccc",
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "15866846-9b84-4355-95a4-7a959635e95c",
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "774e4866-5541-45f6-96b0-db97da7a1fe7",
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "445988c7-2864-4955-b46f-670708c1c52b",
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "7177cbdf-617c-44d8-af0f-0467410c3cff",
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.68470362140412,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d0db85b3-3907-40e3-aa38-6ffcb70f6c9b",
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "5d7651c6-0b98-4884-84d2-bd345d1674d1",
"predictor_code": "77233-5",
"predictor_name": "Percentage of body fat by Bioelectrical impedance analysis",
"value": "20.436241024045124",
"imputation_code": "SIDEWAYS",
"percentile": 29.804718297046517,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"value": "5.4",
"imputation_code": "GIVEN",
"percentile": 73.54624983918693,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "f4352c46-4522-4a09-82dc-9b1495fe97ea",
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"value": "78.32361224268618",
"imputation_code": "SIDEWAYS",
"percentile": 53.22488221062015,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2e2262a2-9dc3-4add-addb-f0979d3b4a19",
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"value": "23.055872833565854",
"imputation_code": "SIDEWAYS",
"percentile": 39.74432542718694,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2e03fe58-e9c6-4a87-9775-b2abdf572128",
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"value": "25.677798707107822",
"imputation_code": "SIDEWAYS",
"percentile": 44.18314455749664,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d42a01fc-775a-4a56-b8ae-f853205eb532",
"predictor_code": "1916-6",
"predictor_name": "Aspartate aminotransferase/Alanine aminotransferase [Enzymatic activity ratio] in Serum or Plasma",
"value": "1.1137205211214056",
"imputation_code": "SIDEWAYS",
"percentile": 60.563876088069634,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"value": "4.8",
"imputation_code": "GIVEN",
"percentile": 69.0258435529689,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "341736cc-f1de-4eca-a3cc-31db68667b1c",
"predictor_code": "1869-7",
"predictor_name": "Apolipoprotein A-I [Mass/volume] in Serum or Plasma",
"value": "177.09699348765676",
"imputation_code": "SIDEWAYS",
"percentile": 95.51415487094089,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d18560b0-acb4-4b97-bf93-498efbf30524",
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"value": "53.755431096377684",
"imputation_code": "SIDEWAYS",
"percentile": 0.790527018012008,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "05804370-22d8-41ca-80d9-8c8eb23f0e60",
"predictor_code": "3097-3",
"predictor_name": "Urea nitrogen/Creatinine [Mass Ratio] in Serum or Plasma",
"value": "17.41129267244571",
"imputation_code": "SIDEWAYS",
"percentile": 65.88561591430758,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "852a0141-90a0-4397-9480-081786fedc54",
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"value": "0.7",
"imputation_code": "GIVEN",
"percentile": 73.62711213517666,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c7ce113f-9f44-435c-b51c-ac4d96e34dfd",
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"value": "1.654981082712587",
"imputation_code": "SIDEWAYS",
"percentile": 69.4201417715052,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "f644ac87-420c-4656-8f07-daa6350bca0c",
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"value": "9.6",
"imputation_code": "GIVEN",
"percentile": 52.8288150870138,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"value": "0.83",
"imputation_code": "GIVEN",
"percentile": 28.15765995411675,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "78f294fa-0dcc-4446-95bd-04e8b1a3ab13",
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"value": "0.8083607466251386",
"imputation_code": "SIDEWAYS",
"percentile": 31.96089670105719,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0d5824c2-d123-4c85-b60f-120caa64cde2",
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"value": "30.744187712381446",
"imputation_code": "SIDEWAYS",
"percentile": 50.64359905690436,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0a4a58a8-7a5d-451e-a3d8-35d14409c51d",
"predictor_code": "2339-0",
"predictor_name": "Glucose [Mass/volume] in Blood",
"value": "85.7442385345538",
"imputation_code": "SIDEWAYS",
"percentile": 44.10560643907854,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"value": "76.0",
"imputation_code": "GIVEN",
"percentile": 98.13722769529623,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2c7427b4-c9a1-4331-bba2-f1e69f8e84ca",
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"value": "193.337740500062",
"imputation_code": "SIDEWAYS",
"percentile": 58.47104791186267,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"value": "80.0",
"imputation_code": "GIVEN",
"percentile": 6.254557507457739,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "4f319e6a-6da4-4e80-a1af-9e61880d1685",
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"value": "1.488221717663628",
"imputation_code": "SIDEWAYS",
"percentile": 96.52717427635538,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "342fe01a-ccfe-4447-b362-9196ddd4702e",
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"value": "41.47289534270046",
"imputation_code": "SIDEWAYS",
"percentile": 66.44825669128743,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "a624e601-d519-40d9-b972-b45e15d2a43e",
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"value": "8.1",
"imputation_code": "GIVEN",
"percentile": 95.63995837669094,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "4c59c525-a692-42b1-b3ba-c2d2ce8feb7e",
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"value": "43.258524883544034",
"imputation_code": "SIDEWAYS",
"percentile": 83.47410302945694,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "22f995d9-36e8-4102-8d91-824d3a56fa2c",
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"value": "558.6263467193654",
"imputation_code": "SIDEWAYS",
"percentile": 74.24106283293756,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "3197ae19-9438-40d5-aded-67228b498a9e",
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"value": "40.0",
"imputation_code": "GIVEN",
"percentile": 0.4880694143167028,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "e6d8e217-5028-4c61-ada8-5f0245379f75",
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"value": "5.316226069713219",
"imputation_code": "SIDEWAYS",
"percentile": 31.277884002549396,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1bc47938-2db4-49c2-8ace-788019880fae",
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"value": "14.45137291812994",
"imputation_code": "SIDEWAYS",
"percentile": 51.33885878227606,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c825117d-cd55-4079-a54c-34669d5d8d60",
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"value": "42.15577586595457",
"imputation_code": "SIDEWAYS",
"percentile": 70.5872660163459,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "312e8a1d-a677-42e0-a80a-b77203b44778",
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"value": "43.60129333093285",
"imputation_code": "SIDEWAYS",
"percentile": 50.99028517706048,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "99fb16ad-278b-4b43-97c4-193d9f661fec",
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"value": "15.122401112344287",
"imputation_code": "SIDEWAYS",
"percentile": 50.90880601692259,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2de14f30-d6ca-4077-ae93-34424420f0b0",
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"value": "31.067829004505402",
"imputation_code": "SIDEWAYS",
"percentile": 45.60639298025697,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "990ebcf5-9a0d-481a-923e-90e332753086",
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"value": "34.697917583819034",
"imputation_code": "SIDEWAYS",
"percentile": 51.44155437167033,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "e77727be-3599-4e73-8c94-55d1abac0a04",
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"value": "89.59648551762287",
"imputation_code": "SIDEWAYS",
"percentile": 46.734565966781574,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b788b66e-dffc-4ea8-8c83-a81263ecfc3d",
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"value": "13.124054403810012",
"imputation_code": "SIDEWAYS",
"percentile": 50.977749921654656,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "e84e3386-7e69-48a1-8523-3f1ac39def72",
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"value": "4.853367372418893",
"imputation_code": "SIDEWAYS",
"percentile": 49.85584456283297,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d4138347-bf65-418c-9484-77a9e8ee56eb",
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"value": "5.822673672262803",
"imputation_code": "SIDEWAYS",
"percentile": 39.138201190849266,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
"predictor_code": "8302-2",
"predictor_name": "Body height",
"value": "198.12",
"imputation_code": "GIVEN",
"percentile": 99.82283346345565,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1f796753-f375-494a-8539-b0f140ff4f56",
"predictor_code": "29463-7",
"predictor_name": "Body weight",
"value": "95.25431999999999",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "60516852-6ad8-463f-a801-64071e979f89",
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"value": "24.265285996055226",
"imputation_code": "SIDEWAYS",
"percentile": 21.274998498588673,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2907d000-e927-4641-bee9-a920adff9302",
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"value": "71.06679400032827",
"imputation_code": "SIDEWAYS",
"percentile": 37.71212019585485,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "bb212a4f-51fa-40c3-8790-46b8576dc281",
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"value": "103.15196343253379",
"imputation_code": "SIDEWAYS",
"percentile": 63.47274803196923,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "cb220164-ddf0-4c8c-ac80-e614d8775b2b",
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"value": "64.85154564239221",
"imputation_code": "SIDEWAYS",
"percentile": 43.75520933512855,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2416a187-004a-48a9-9bf0-fd2e74040db7",
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"value": "119.67778583214007",
"imputation_code": "SIDEWAYS",
"percentile": 48.024550576871476,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "e1a3cb6b-0e20-4c69-8811-ef55d02ee0a9",
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"value": "36.639910308793915",
"imputation_code": "SIDEWAYS",
"percentile": 51.70270270270271,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "aa653593-7071-4266-b010-953cefff9eb3",
"predictor_code": "46098-0",
"predictor_name": "Sex",
"value": "male",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "8835a752-bc03-473c-a4ba-37387c045f14",
"predictor_code": "64219-9",
"predictor_name": "On the average of the entire time you smoked, how many cigarettes did you smoke per day [PhenX]",
"value": "0.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "2bc4c747-c1b2-48e0-a97e-3f7522587fc5",
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 37.142725428729484,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0a76f8f1-d242-46c5-b0f2-886863a04ad3",
"predictor_code": "63632-4",
"predictor_name": "About how long has it been since you completely quit smoking cigarettes [TUS-CPS]",
"value": null,
"imputation_code": "SIDEWAYS",
"percentile": null,
"health_event_id": null,
"health_event_date": null
}
],
"disease_scores": [
{
"disease_code": "ARD",
"disease_concept_code": "2000000201",
"disease_name": "Kidney Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 60.784789644012946,
"health_score": {
"health_score": 216.94322311953522,
"max_score": 245.0
},
"risk_ratios": {
"your_risk_frac": 0.0009500818099834876,
"peer_risk_frac": 0.0017091568597113092,
"risk_ratio": 0.5558774811013919
},
"disease_age": {
"disease_age": 21.369057441744935,
"disease_age_delta": -6.6309425582550645
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.012408412428754349,
"risk_attribution": -0.00032525425324991797,
"age_attribution": -0.004833526741163825,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.5106164477602144,
"risk_attribution": -0.013384481888151318,
"age_attribution": -0.19890362839711337,
"multiplier": 0.9917458809375196
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.1774323856782838,
"risk_attribution": -0.004650928427588949,
"age_attribution": -0.06911635036703667,
"multiplier": 0.9995022743075959
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.08413788863575156,
"risk_attribution": -0.002205455878854388,
"age_attribution": -0.03277475962384618,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.492193028806578,
"risk_attribution": -0.012901559885962765,
"age_attribution": -0.19172703842741606,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.28966311011823254,
"risk_attribution": -0.00759276491787374,
"age_attribution": -0.11283428857028338,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": -0.022814456224488713,
"risk_attribution": 0.0005980216216381793,
"age_attribution": 0.008887058266264267,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.15076116513886448,
"risk_attribution": -0.003951811762211994,
"age_attribution": -0.05872694250064271,
"multiplier": 0.9723412662047638
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": -0.025683416816128537,
"risk_attribution": 0.0006732239603898201,
"age_attribution": 0.010004622484786006,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.0497563916894221,
"risk_attribution": -0.0013042343745643882,
"age_attribution": -0.01938191941600271,
"multiplier": 0.9991380400368032
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.004014379364161561,
"risk_attribution": -0.00010522651224313994,
"age_attribution": -0.0015637463791005717,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": -0.013976704080889437,
"risk_attribution": 0.0003663629392419488,
"age_attribution": 0.005444433227554678,
"multiplier": 0.9949059870060811
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.15386090683650902,
"risk_attribution": -0.004033063427316119,
"age_attribution": -0.05993440433125898,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.0040115593414805925,
"risk_attribution": -0.0001051525926844121,
"age_attribution": -0.0015626478779734196,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": -0.0075479029840776896,
"risk_attribution": 0.00019784864202289135,
"age_attribution": 0.0029401820033565862,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.1433290245391715,
"risk_attribution": -0.003756997529957772,
"age_attribution": -0.055831854145144556,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.033735484358238726,
"risk_attribution": -0.0008842879647952467,
"age_attribution": -0.013141194871456268,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.22518028531370052,
"risk_attribution": -0.005902515407739685,
"age_attribution": -0.08771588927238251,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.11734193952890923,
"risk_attribution": -0.0030758136978046753,
"age_attribution": -0.04570894188354672,
"multiplier": 0.9966829680266313
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.15253682477969635,
"risk_attribution": -0.003998356060591893,
"age_attribution": -0.059418626340654125,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.03970346896061316,
"risk_attribution": -0.00104072315635562,
"age_attribution": -0.015465941355509634,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.01480839629482843,
"risk_attribution": -0.0003881635871114247,
"age_attribution": -0.0057684075135137946,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.010601679684735804,
"risk_attribution": -0.00027789545430186274,
"age_attribution": -0.0041297388003219354,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.06635916875831593,
"risk_attribution": -0.00173943298586329,
"age_attribution": -0.02584930333000886,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.4191847441125481,
"risk_attribution": -0.010987837622493645,
"age_attribution": -0.16328766325180216,
"multiplier": 0.9639535462770482
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.06383328956102634,
"risk_attribution": -0.0016732236333912428,
"age_attribution": -0.02486538175944947,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": 0.10536673785601113,
"risk_attribution": -0.002761914937588607,
"age_attribution": -0.041044166445985485,
"multiplier": 0.9288430581582298
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.26553970246458375,
"risk_attribution": -0.006960432539555253,
"age_attribution": -0.10343734624173015,
"multiplier": 0.9481461960041457
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -2.3070509950840097,
"risk_attribution": 0.06047334039902299,
"age_attribution": 0.8986800480717587,
"multiplier": 0.9096540828383998
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.2398406743448787,
"risk_attribution": -0.03249919802378788,
"age_attribution": -0.4829629163793168,
"multiplier": 0.9053832223743158
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.9075047799287023,
"risk_attribution": -0.023787877072205976,
"age_attribution": -0.35350603042130835,
"multiplier": 0.8783383928080901
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 4.672154865417728,
"risk_attribution": -0.12246838590712181,
"age_attribution": -1.819973796851167,
"multiplier": 1.6368696836182854
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7152709936415135,
"risk_attribution": 0.018748968431213875,
"age_attribution": 0.2786239976141849,
"multiplier": 0.9178250721906006
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.2071098508999319,
"risk_attribution": 0.005428845977028958,
"age_attribution": 0.0806767995850512,
"multiplier": 1.0830747830280631
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.36444206602621415,
"risk_attribution": 0.00955290072108871,
"age_attribution": 0.1419634044126896,
"multiplier": 0.9588487497730042
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4442925148134048,
"risk_attribution": -0.011645972517426143,
"age_attribution": -0.17306805069382272,
"multiplier": 0.8474966219628978
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 7.410650767565483,
"risk_attribution": -0.19425093220748238,
"age_attribution": -2.8867172863668134,
"multiplier": 0.7089714114984652
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.2935047127873502,
"risk_attribution": -0.03390586119284352,
"age_attribution": -0.5038670059507955,
"multiplier": 0.9330907638200518
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.10971363846586284,
"risk_attribution": -0.0028758576292848134,
"age_attribution": -0.042737441912088676,
"multiplier": 0.8534716945021091
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.6522929189640355,
"risk_attribution": -0.017098162031285336,
"age_attribution": -0.25409175307376397,
"multiplier": 0.8614098951204885
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -4.870189658783915,
"risk_attribution": 0.12765935285826516,
"age_attribution": 1.8971155323400797,
"multiplier": 1.2464652891154258
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.688408647262951,
"risk_attribution": -0.04425724055348346,
"age_attribution": -0.6576964130919826,
"multiplier": 0.7748925404281668
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.3467801554375052,
"risk_attribution": 0.035302338334075534,
"age_attribution": 0.5246197233653237,
"multiplier": 0.9716416560168324
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": -1.9596316277890766,
"risk_attribution": 0.051366645443251265,
"age_attribution": 0.7633476022927259,
"multiplier": 1.2479196626542408
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.098333162851595,
"risk_attribution": 0.028789946719942974,
"age_attribution": 0.4278406076387295,
"multiplier": 0.8847555147096
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.3949235840169788,
"risk_attribution": 0.010351894422251927,
"age_attribution": 0.1538370613503175,
"multiplier": 0.8455771527026062
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -1.3499252665700279,
"risk_attribution": 0.03538477924089341,
"age_attribution": 0.5258448582365465,
"multiplier": 0.8847700295253985
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 1.448705433295021,
"risk_attribution": -0.03797404435023066,
"age_attribution": -0.5643233163070935,
"multiplier": 0.8208552360284789
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.7863101345866057,
"risk_attribution": -0.020611074713728156,
"age_attribution": -0.30629631987127814,
"multiplier": 0.8676460637472703
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.579534398648627,
"risk_attribution": -0.0414033853456136,
"age_attribution": -0.615285943974921,
"multiplier": 0.8680939230669155
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.3122375920270082,
"risk_attribution": -0.008184496237081647,
"age_attribution": -0.12162786813579915,
"multiplier": 0.8839446295709611
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.48145067376971784,
"risk_attribution": -0.01261997699325018,
"age_attribution": -0.1875425014746133,
"multiplier": 0.873830299734398
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.3958059594798576,
"risk_attribution": 0.010375023599647709,
"age_attribution": 0.15418077860021226,
"multiplier": 0.9059632242745151
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.27900846594338563,
"risk_attribution": 0.007313481137242554,
"age_attribution": 0.1086839181798402,
"multiplier": 0.9685484437474998
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.5926354260513237,
"risk_attribution": -0.015534396044339151,
"age_attribution": -0.23085299558080957,
"multiplier": 0.9277909284818165
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.7298443338283661,
"risk_attribution": -0.019130970633916913,
"age_attribution": -0.28430084224726604,
"multiplier": 0.8809257898325706
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.764802396506003,
"risk_attribution": 0.02004730530900636,
"age_attribution": 0.29791827572167867,
"multiplier": 0.8610174363693966
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.3199938180929736,
"risk_attribution": -0.034600204181111184,
"age_attribution": -0.5141854733276158,
"multiplier": 0.8736330410690735
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -3.2187855226677202,
"risk_attribution": 0.08437208930296927,
"age_attribution": 1.2538337186336768,
"multiplier": 0.9848928395741899
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 2.933940616553433,
"risk_attribution": -0.07690562106924491,
"age_attribution": -1.1428762952974578,
"multiplier": 0.7178719449020983
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": -0.5646679832378719,
"risk_attribution": 0.014801302283970617,
"age_attribution": 0.21995866211978343,
"multiplier": 0.956650445501429
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.2242451931631746,
"risk_attribution": -0.03209040305384687,
"age_attribution": -0.4768879107518119,
"multiplier": 0.902737453911845
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.6859180746739306,
"risk_attribution": -0.04419195667190251,
"age_attribution": -0.6567262447260489,
"multiplier": 0.8982738746976385
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.9769895142058114,
"risk_attribution": -0.051821637281803425,
"age_attribution": -0.7701091286883956,
"multiplier": 0.9399970806466673
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -0.010088697640359282,
"risk_attribution": 0.00026444896445214925,
"age_attribution": 0.00392991368623361,
"multiplier": 0.8880480396413437
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.4719254830226969,
"risk_attribution": -0.038582697550465984,
"age_attribution": -0.5733683679552632,
"multiplier": 0.8759052609286554
}
]
},
{
"disease_code": "COPD",
"disease_concept_code": "2000000203",
"disease_name": "Respiratory Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 69.65219817264548,
"health_score": {
"health_score": 223.40020382837685,
"max_score": 255.0
},
"risk_ratios": {
"your_risk_frac": 0.000257528058673519,
"peer_risk_frac": 0.0005794723483791671,
"risk_ratio": 0.4444182011339223
},
"disease_age": {
"disease_age": 20.48610097779799,
"disease_age_delta": -7.513899022202011
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.3290343655583445,
"risk_attribution": -0.0078121330073193575,
"age_attribution": -0.10545881393968863,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.025254072725225746,
"risk_attribution": -0.0005995974759998021,
"age_attribution": -0.008094183573286043,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 6.1764798415999556,
"risk_attribution": -0.1466457218160991,
"age_attribution": -1.9796237311328109,
"multiplier": 0.7663861744296908
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.03430722922193046,
"risk_attribution": -0.0008145429956518936,
"age_attribution": -0.010995811021631016,
"multiplier": 1.0074344868021488
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.0984216151947554,
"risk_attribution": 0.0023367855433334495,
"age_attribution": 0.031545114708168225,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 1.4467265643112253,
"risk_attribution": -0.034349057510885975,
"age_attribution": -0.4636903726101786,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": -0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.09388639347084676,
"risk_attribution": -0.0022291075648805396,
"age_attribution": -0.030091530663397377,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.054830107309408446,
"risk_attribution": -0.0013018095856942903,
"age_attribution": -0.017573599265912374,
"multiplier": 1.0046450522216923
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": -0.01946826969486643,
"risk_attribution": 0.0004622274394365434,
"age_attribution": 0.006239775678126057,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.04986401754864441,
"risk_attribution": -0.0011839016775900952,
"age_attribution": -0.015981917694294464,
"multiplier": 1.0038555378938525
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": -0.027547391949231288,
"risk_attribution": 0.0006540468487143274,
"age_attribution": 0.008829215383529659,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.010113554292227942,
"risk_attribution": -0.00024012212576506834,
"age_attribution": -0.0032414955761934914,
"multiplier": 0.9985330573494733
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.043345132575738604,
"risk_attribution": 0.0010291263659555861,
"age_attribution": 0.013892549684708834,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.10374082657383495,
"risk_attribution": -0.0024630774785752343,
"age_attribution": -0.03324997529979771,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": -0.0016481549788000373,
"risk_attribution": 3.9131492812954814e-05,
"age_attribution": 0.0005282501995136552,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.10853428762235957,
"risk_attribution": -0.0025768867313350004,
"age_attribution": -0.03478632763790589,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.08107570818683306,
"risk_attribution": -0.001924948523061919,
"age_attribution": -0.02598557755569031,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.012848383382185148,
"risk_attribution": -0.00030505409287670255,
"age_attribution": -0.0041180357262329366,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.46144359741351615,
"risk_attribution": -0.010955873111470175,
"age_attribution": -0.14789730063823253,
"multiplier": 0.9916415579961531
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.07134340012772179,
"risk_attribution": -0.0016938781760573853,
"age_attribution": -0.022866275220604727,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.11564187648399858,
"risk_attribution": 0.002745639406923288,
"age_attribution": 0.03706438114774959,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.0029716911185333652,
"risk_attribution": -7.055568872041042e-05,
"age_attribution": -0.0009524568056100655,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.01597591027271831,
"risk_attribution": -0.00037930972879288643,
"age_attribution": -0.005120439459595021,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.20759352286677416,
"risk_attribution": -0.0049288110357143325,
"age_attribution": -0.06653580596647322,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": -0.5060602953773792,
"risk_attribution": 0.01201518975230077,
"age_attribution": 0.1621973997819493,
"multiplier": 0.9759590159831211
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.19492463418777647,
"risk_attribution": -0.004628018614693791,
"age_attribution": -0.06247530009270566,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -2.1054063410398065,
"risk_attribution": 0.049987831340188776,
"age_attribution": 0.6748038467361438,
"multiplier": 1.1210918709526037
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": -0.49171310568568594,
"risk_attribution": 0.01167455009308902,
"age_attribution": 0.15759898160247984,
"multiplier": 0.9926277168251958
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -4.428310815893396,
"risk_attribution": 0.10513963498252217,
"age_attribution": 1.419318026577387,
"multiplier": 0.9710467144135957
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.0328698056709513,
"risk_attribution": -0.024523019920588772,
"age_attribution": -0.33104513103164157,
"multiplier": 0.9406815912349639
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4305678356232448,
"risk_attribution": -0.01022280209197772,
"age_attribution": -0.13800130934151492,
"multiplier": 0.8837073829172051
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 3.1355233111545315,
"risk_attribution": -0.07444549177324797,
"age_attribution": -1.004966666364726,
"multiplier": 1.3669494153092756
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": 1.1134535241628711,
"risk_attribution": -0.026436287326608795,
"age_attribution": -0.3568730209561081,
"multiplier": 0.8958251058005836
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.9611492141118791,
"risk_attribution": 0.022820186237327955,
"age_attribution": 0.30805796217455905,
"multiplier": 1.1396024451603952
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.39949327464697054,
"risk_attribution": 0.009485011061916866,
"age_attribution": 0.12804160091199118,
"multiplier": 0.9170822786587032
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -2.4999998267328403,
"risk_attribution": 0.05935650864787607,
"age_attribution": 0.8012750161500143,
"multiplier": 1.0096727032407053
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 5.173071034502558,
"risk_attribution": -0.12282218275063166,
"age_attribution": -1.6580211455987306,
"multiplier": 0.841845008124314
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.8195316084354407,
"risk_attribution": -0.043200420454558505,
"age_attribution": -0.5831781279920752,
"multiplier": 0.9523699807279381
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.5014746174636792,
"risk_attribution": -0.01190631381245856,
"age_attribution": -0.16072764402234177,
"multiplier": 1.0798700224949715
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.0109356748761023,
"risk_attribution": -0.024002246514812357,
"age_attribution": -0.32401502214165506,
"multiplier": 0.8506699402948
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -4.962181902326572,
"risk_attribution": 0.11781512536450936,
"age_attribution": 1.5904290637980636,
"multiplier": 1.1776282785975931
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.06031347398277825,
"risk_attribution": -0.0014319989952642498,
"age_attribution": -0.019331073275621714,
"multiplier": 0.8053891257668903
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.8972337454767514,
"risk_attribution": 0.02130266650544382,
"age_attribution": 0.28757241348963086,
"multiplier": 0.9718431748860948
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 1.4469511309953476,
"risk_attribution": -0.03435438930898676,
"age_attribution": -0.4637623484845458,
"multiplier": 1.2148940809380033
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -2.4881613580201907,
"risk_attribution": 0.05907543256018757,
"age_attribution": 0.797480668203472,
"multiplier": 0.9445852396732775
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.19720585826709258,
"risk_attribution": 0.00468218081716427,
"age_attribution": 0.063206455287778,
"multiplier": 0.9168939793103758
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7177651283584806,
"risk_attribution": 0.017041614000522433,
"age_attribution": 0.23005092187105136,
"multiplier": 1.012853555103547
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": -0.33829912200649553,
"risk_attribution": 0.008032102461058805,
"age_attribution": 0.10842826129453889,
"multiplier": 0.8708955910430094
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.573860915438744,
"risk_attribution": -0.013624953100269928,
"age_attribution": -0.183928178461902,
"multiplier": 0.9099313095218353
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.7024657607343254,
"risk_attribution": -0.04042097226134679,
"age_attribution": -0.5456573497886973,
"multiplier": 0.9288833144417518
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 1.0662124740312944,
"risk_attribution": -0.025314661728604568,
"age_attribution": -0.34173179062386777,
"multiplier": 0.9295555887537384
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5786478545457753,
"risk_attribution": -0.013738607505148303,
"age_attribution": -0.18546244045235516,
"multiplier": 0.9376696464404627
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.03715295355220503,
"risk_attribution": -0.0008821079046623711,
"age_attribution": -0.01190789420832434,
"multiplier": 0.9114072684158866
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.899565035763283,
"risk_attribution": 0.021358017410101307,
"age_attribution": 0.2883196154062135,
"multiplier": 0.9683073398434995
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 2.160779848606654,
"risk_attribution": -0.051302542663609244,
"age_attribution": -0.6925516112341497,
"multiplier": 0.9242855593886673
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.5860152659499346,
"risk_attribution": -0.013913529044760942,
"age_attribution": -0.18782376969275208,
"multiplier": 0.933088784845221
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -2.8876527343172036,
"risk_attribution": 0.06856039855033104,
"age_attribution": 0.9255216606752639,
"multiplier": 0.9588584606190752
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 2.9733092839185846,
"risk_attribution": -0.07059410818214573,
"age_attribution": -0.9529754438440806,
"multiplier": 0.8330132235688933
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 0.6436339271130864,
"risk_attribution": -0.015281546163417785,
"age_attribution": -0.20629112843428551,
"multiplier": 0.9238946283760828
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": -2.9361868390301127,
"risk_attribution": 0.06971272463263863,
"age_attribution": 0.9410773279684435,
"multiplier": 0.7579900757408803
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.20054263578040457,
"risk_attribution": -0.004761404607985,
"age_attribution": -0.06427592594424694,
"multiplier": 1.0297380423358515
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.935108778978727,
"risk_attribution": -0.04594452357388354,
"age_attribution": -0.6202217702369118,
"multiplier": 0.921513081697385
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 2.9937969731979828,
"risk_attribution": -0.07108053929821379,
"age_attribution": -0.9595419537224753,
"multiplier": 0.9204160381124332
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.7509519924350079,
"risk_attribution": -0.01782955660895398,
"age_attribution": -0.24068764462780454,
"multiplier": 1.0095944310679474
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.4746664715326516,
"risk_attribution": -0.01126981859002965,
"age_attribution": -0.1521353644013034,
"multiplier": 0.8273949550061263
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 9.600189079818204,
"risk_attribution": -0.22793349825234588,
"age_attribution": -3.0769568772440428,
"multiplier": 0.5677330809335879
}
]
},
{
"disease_code": "Dementia",
"disease_concept_code": "2000000204",
"disease_name": "Brain Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 63.56725699288298,
"health_score": {
"health_score": 212.27837905911346,
"max_score": 235.0
},
"risk_ratios": {
"your_risk_frac": 8.88878904608664e-06,
"peer_risk_frac": 1.3603498690245142e-05,
"risk_ratio": 0.6534193333999181
},
"disease_age": {
"disease_age": 25.749546023435627,
"disease_age_delta": -2.2504539765643727
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.0789268996309855,
"risk_attribution": -0.0022278622736020843,
"age_attribution": -0.01478467705527687,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.005379876669218353,
"risk_attribution": 0.00015185727963496794,
"age_attribution": 0.0010077646470783943,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.0720354356751369,
"risk_attribution": -0.0020333375598618245,
"age_attribution": -0.013493760149866047,
"multiplier": 0.9636871991780269
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.24172492268625762,
"risk_attribution": -0.00682314696712951,
"age_attribution": -0.04528018881822464,
"multiplier": 0.9414363684664054
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.007956112785187427,
"risk_attribution": 0.0002245764574753886,
"age_attribution": 0.0014903481410560356,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.8038471133050563,
"risk_attribution": -0.022690117891989395,
"age_attribution": -0.15057756009164322,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.38666440062040613,
"risk_attribution": -0.010914340164312992,
"age_attribution": -0.07243041749609799,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.007066630290978221,
"risk_attribution": -0.00019946911763126505,
"age_attribution": -0.0013237292635289806,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.02504551827676063,
"risk_attribution": -0.0007069575208513711,
"age_attribution": -0.004691555111567694,
"multiplier": 0.9399213718328696
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.013791784572321783,
"risk_attribution": -0.00038929942361831123,
"age_attribution": -0.0025834928506133356,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.03332075694955536,
"risk_attribution": -0.000940541915149999,
"age_attribution": -0.006241682278663164,
"multiplier": 0.9721945533429268
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.001985174869574474,
"risk_attribution": -5.603534687293894e-05,
"age_attribution": -0.00037186522569787535,
"multiplier": 0.972895756597181
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.04701517538578949,
"risk_attribution": -0.0013270929938779083,
"age_attribution": -0.008806936393371422,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.09730213936152404,
"risk_attribution": -0.002746538460750699,
"age_attribution": -0.018226747965188184,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.05440825077838484,
"risk_attribution": -0.0015357766471072432,
"age_attribution": -0.010191815726474294,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.07844982854827295,
"risk_attribution": -0.0022143960324096518,
"age_attribution": -0.01469531155475305,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.0325883989758097,
"risk_attribution": -0.000919869714568094,
"age_attribution": -0.006104496145908549,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.021777380045226148,
"risk_attribution": -0.0006147080861846898,
"age_attribution": -0.004079363722432324,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.07705983706270349,
"risk_attribution": -0.0021751608717001003,
"age_attribution": -0.014434936760863878,
"multiplier": 0.9414624770369378
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": -0.2847225706288544,
"risk_attribution": 0.008036837586586316,
"age_attribution": 0.05333455737875298,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.002836428303168323,
"risk_attribution": 8.006359856969568e-05,
"age_attribution": 0.000531322991893214,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.008512039015160537,
"risk_attribution": -0.0002402685355939201,
"age_attribution": -0.001594484877899088,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.04105037464221081,
"risk_attribution": -0.0011587251166611068,
"age_attribution": -0.007689603100093741,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.4366035599391043,
"risk_attribution": -0.01232396818139848,
"age_attribution": -0.08178507790200494,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.4773410504025462,
"risk_attribution": -0.013473861545372667,
"age_attribution": -0.08941607118009337,
"multiplier": 0.9396388470213138
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.3782307547447611,
"risk_attribution": -0.010676284424595412,
"age_attribution": -0.07085061731069923,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.9042003849184136,
"risk_attribution": 0.025522780379750042,
"age_attribution": 0.16937584963780325,
"multiplier": 0.8899802428685344
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": -0.17843940180372872,
"risk_attribution": 0.005036792440363178,
"age_attribution": 0.03342547270879007,
"multiplier": 0.933996565623889
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -7.430402769365709,
"risk_attribution": 0.20973728963046084,
"age_attribution": 1.391871539986085,
"multiplier": 0.9675996017010635
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.9768335226747055,
"risk_attribution": -0.02757298922080603,
"age_attribution": -0.18298157202470702,
"multiplier": 0.9839710164507038
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.5590267324662604,
"risk_attribution": -0.015779595714762985,
"age_attribution": -0.10471752651406056,
"multiplier": 0.9972282578373897
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 21.64798958494048,
"risk_attribution": -0.6110557936661416,
"age_attribution": -4.055126153513473,
"multiplier": 1.2533634681719592
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5221950646378093,
"risk_attribution": 0.01473995164395198,
"age_attribution": 0.09781817639646012,
"multiplier": 0.9868381782829923
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 2.5616417188865963,
"risk_attribution": -0.07230722314793889,
"age_attribution": -0.47984965483420916,
"multiplier": 0.8838116190436748
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.0051818758200633235,
"risk_attribution": 0.00014626832803499288,
"age_attribution": 0.000970674901692292,
"multiplier": 0.9782317989827205
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.8994472816760731,
"risk_attribution": 0.025388614975487934,
"age_attribution": 0.1684854929054731,
"multiplier": 0.9986913058221674
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 2.590383523455293,
"risk_attribution": -0.07311851539903734,
"age_attribution": -0.4852336025189759,
"multiplier": 0.9333225259573602
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.018022595041928,
"risk_attribution": -0.028735629345283644,
"age_attribution": -0.19069715614118665,
"multiplier": 0.9642051494920603
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 2.841284034293903,
"risk_attribution": -0.08020066084169687,
"age_attribution": -0.5322325729979399,
"multiplier": 0.9957003342187742
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": -0.4790790500224026,
"risk_attribution": 0.013522919899402998,
"age_attribution": 0.08974163525548352,
"multiplier": 0.9760901628991208
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -11.306704135021802,
"risk_attribution": 0.3191532886629015,
"age_attribution": 2.1179847425583427,
"multiplier": 1.1093155190101196
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.1670455776128992,
"risk_attribution": -0.03294208724901193,
"age_attribution": -0.2186123115752283,
"multiplier": 0.7145888653027611
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.882879074737124,
"risk_attribution": 0.02492094573530374,
"age_attribution": 0.16538191744358843,
"multiplier": 0.9585974384868644
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 0.7102300078548353,
"risk_attribution": -0.020047596541581558,
"age_attribution": -0.13304109689085203,
"multiplier": 1.0120971268699015
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.8365595944565938,
"risk_attribution": 0.05184039728966486,
"age_attribution": 0.3440264424899718,
"multiplier": 1.043947368346181
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": 0.909043010182199,
"risk_attribution": -0.025659472713806242,
"age_attribution": -0.17028297573751738,
"multiplier": 0.9635803649172582
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -12.240323746653532,
"risk_attribution": 0.3455064828257797,
"age_attribution": 2.292871435371362,
"multiplier": 1.4463885404199384
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": -0.8621147836517556,
"risk_attribution": 0.0243348340172017,
"age_attribution": 0.16149232670311528,
"multiplier": 0.9936639047063435
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.9420347260116848,
"risk_attribution": -0.026590726815786156,
"age_attribution": -0.1764630216574628,
"multiplier": 0.9105354792177477
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.7865223640378434,
"risk_attribution": -0.05042800102873651,
"age_attribution": -0.3346534112935039,
"multiplier": 0.8850166005664024
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.43630026523277277,
"risk_attribution": 0.012315407109860413,
"age_attribution": 0.08172826439093776,
"multiplier": 0.9012761906404292
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5382241297303151,
"risk_attribution": -0.015192402577254394,
"age_attribution": -0.10082075919140968,
"multiplier": 0.9076136611356944
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.13233974286745154,
"risk_attribution": -0.0037355416443704847,
"age_attribution": -0.02479003190321085,
"multiplier": 0.9837347136457428
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.06267858173284115,
"risk_attribution": 0.0017692225116956368,
"age_attribution": 0.01174102357416091,
"multiplier": 0.9969201019631526
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.015858752538348266,
"risk_attribution": -0.0004476435366366137,
"age_attribution": -0.0029706796526311717,
"multiplier": 0.9572848675620098
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.40979038030815673,
"risk_attribution": -0.011567115047493644,
"age_attribution": -0.07676240244506786,
"multiplier": 0.9716952407225493
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.23345919658458344,
"risk_attribution": -0.006589831083293392,
"age_attribution": -0.0437318435568247,
"multiplier": 0.9391566318070895
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.5347269971152048,
"risk_attribution": -0.015093689339367004,
"age_attribution": -0.10016567231259373,
"multiplier": 0.9498483528569688
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 4.113756444361848,
"risk_attribution": -0.11611862150965854,
"age_attribution": -0.7705935593354633,
"multiplier": 0.807609150339997
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 0.4675187631999208,
"risk_attribution": -0.013196608755746773,
"age_attribution": -0.08757614911405563,
"multiplier": 0.931706012981251
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.34427214373425147,
"risk_attribution": -0.009717737862042462,
"age_attribution": -0.06448945148024704,
"multiplier": 0.9977581724023997
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 3.44477225323806,
"risk_attribution": -0.09723526681044792,
"age_attribution": -0.6452786759801833,
"multiplier": 0.8907959037760939
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": -0.6540917028354125,
"risk_attribution": 0.018462985813914787,
"age_attribution": 0.12252520542642978,
"multiplier": 0.9860999863147581
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.2060613260779348,
"risk_attribution": -0.005816473934283641,
"age_attribution": -0.03859964313672773,
"multiplier": 1.006334289868375
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.03782520253916592,
"risk_attribution": -0.0010676884829172065,
"age_attribution": -0.007085460175258934,
"multiplier": 0.9213552696634514
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 0.8435071821464311,
"risk_attribution": -0.02380959897579308,
"age_attribution": -0.1580067295199528,
"multiplier": 0.9569669802442929
}
]
},
{
"disease_code": "Liver",
"disease_concept_code": "2000000205",
"disease_name": "Liver Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 69.95880463622399,
"health_score": {
"health_score": 223.6978855733388,
"max_score": 250.0
},
"risk_ratios": {
"your_risk_frac": 0.004499493314542621,
"peer_risk_frac": 0.01022945109568367,
"risk_ratio": 0.43985676967957626
},
"disease_age": {
"disease_age": 22.242942564386,
"disease_age_delta": -5.757057435614001
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.19872750188619573,
"risk_attribution": -0.004697291010016403,
"age_attribution": -0.048459915431646676,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.007517778082763036,
"risk_attribution": -0.00017769654963852857,
"age_attribution": -0.0018332182846700889,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.8315689140242306,
"risk_attribution": -0.01965566490284782,
"age_attribution": -0.20277897556563457,
"multiplier": 0.9843670852590591
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.010567254411438382,
"risk_attribution": -0.0002497765466595123,
"age_attribution": -0.0025768363727344304,
"multiplier": 0.9931824748353414
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.09796584431381078,
"risk_attribution": -0.0023156034037375233,
"age_attribution": -0.02388907667825369,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.21013628536764248,
"risk_attribution": -0.004966958648234453,
"age_attribution": -0.051241959574713926,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.17522068265147195,
"risk_attribution": -0.004141663984982991,
"age_attribution": -0.04272775223646867,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.018480578261859563,
"risk_attribution": -0.0004368225500014073,
"age_attribution": -0.004506508918984461,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.18657093882030798,
"risk_attribution": -0.004409948222228567,
"age_attribution": -0.045495524431302094,
"multiplier": 0.9928080916340138
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.027042717327799465,
"risk_attribution": -0.0006392044975387022,
"age_attribution": -0.006594395754532046,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.1009734558976881,
"risk_attribution": -0.0023866938503062044,
"age_attribution": -0.024622486003196546,
"multiplier": 1.002671134770033
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.007111130924176024,
"risk_attribution": -0.00016808469408683267,
"age_attribution": -0.0017340569369521924,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.047001131919933214,
"risk_attribution": -0.0011109584347038645,
"age_attribution": -0.011461276654783166,
"multiplier": 0.9962551891448772
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.06314472590669809,
"risk_attribution": -0.0014925420513832075,
"age_attribution": -0.015397909440563726,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.006611485693893925,
"risk_attribution": -0.00015627465759905098,
"age_attribution": -0.0016122179092610883,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.025535427127118048,
"risk_attribution": -0.0006035769138276101,
"age_attribution": -0.006226841415234809,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.005445999889563488,
"risk_attribution": -0.00012872625116802652,
"age_attribution": -0.0013280129402529163,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": -0.0016253173537182175,
"risk_attribution": 3.841737314453989e-05,
"age_attribution": 0.00039335914662936487,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.0336325664409652,
"risk_attribution": -0.0007949677346490065,
"age_attribution": -0.008201337560272652,
"multiplier": 1.010897316552634
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.0034031257622688773,
"risk_attribution": -8.043915360147351e-05,
"age_attribution": -0.0008298558834461123,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.0034431144265857565,
"risk_attribution": -8.138435943164496e-05,
"age_attribution": -0.0008396071623210927,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": -0.00858675272917883,
"risk_attribution": 0.0002029637368616634,
"age_attribution": 0.0020781650538216944,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": -0.003050828501801605,
"risk_attribution": 7.211195812656642e-05,
"age_attribution": 0.0007383612149564732,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.010603852638192513,
"risk_attribution": -0.00025064161324507816,
"age_attribution": -0.0025857608897570873,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.38282381589710646,
"risk_attribution": -0.009048746911051288,
"age_attribution": -0.09335199993716979,
"multiplier": 0.9793810079718803
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.05292637295873196,
"risk_attribution": -0.0012510124342739307,
"age_attribution": -0.012906153065581821,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.06103309142150628,
"risk_attribution": 0.0014426296759465543,
"age_attribution": 0.014771222803222458,
"multiplier": 0.940930302789567
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.8435539914195711,
"risk_attribution": -0.01993895431055005,
"age_attribution": -0.20570154960046816,
"multiplier": 0.9259444110423336
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": 2.3532154609164047,
"risk_attribution": -0.05562258733330388,
"age_attribution": -0.5738341253530033,
"multiplier": 0.7022866723781529
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 2.272122121855783,
"risk_attribution": -0.0537057967083213,
"age_attribution": -0.5540594272581315,
"multiplier": 0.7275425429858957
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.06376513319189793,
"risk_attribution": -0.0015072065217542324,
"age_attribution": -0.015549196425448077,
"multiplier": 0.9547759779250896
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4492569222547988,
"risk_attribution": -0.010619015898985102,
"age_attribution": -0.10955178449340583,
"multiplier": 1.404153356080929
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0428720304312593,
"risk_attribution": 0.0246502037546248,
"age_attribution": 0.25239578658014733,
"multiplier": 0.9929337777852564
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.7872795713887195,
"risk_attribution": 0.018608804609095135,
"age_attribution": 0.19053732469645984,
"multiplier": 1.1667409986127293
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0213347331682974,
"risk_attribution": 0.02414113001368231,
"age_attribution": 0.24718333200770307,
"multiplier": 0.9711744292867663
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -1.582667560741018,
"risk_attribution": 0.03740926663069871,
"age_attribution": 0.3830370479136584,
"multiplier": 0.9386925149706511
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 1.551644744001294,
"risk_attribution": -0.036675985143266,
"age_attribution": -0.3783702424706264,
"multiplier": 0.826144089951089
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 4.313120350728789,
"risk_attribution": -0.10194855395605644,
"age_attribution": -1.0517590442138502,
"multiplier": 0.8149571133169068
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.469389053769498,
"risk_attribution": -0.011094875955992308,
"age_attribution": -0.1144610264523764,
"multiplier": 1.0242045854399373
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.4753496098788563,
"risk_attribution": -0.03487260894108059,
"age_attribution": -0.35976559181921963,
"multiplier": 0.780979847432794
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -3.670586149119443,
"risk_attribution": 0.0867610731081563,
"age_attribution": 0.8883549000102005,
"multiplier": 1.2211080888727988
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.045938015874159,
"risk_attribution": -0.02472267397500738,
"age_attribution": -0.2540954640381154,
"multiplier": 0.8340195718415666
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.7655922289432422,
"risk_attribution": 0.041733028522239035,
"age_attribution": 0.4273084581812445,
"multiplier": 0.943374610648246
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 0.007934278379908106,
"risk_attribution": -0.0001875413022916821,
"age_attribution": -0.0019347823308405294,
"multiplier": 1.3084992952295484
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": 1.2057490705227474,
"risk_attribution": -0.02850010298295587,
"age_attribution": -0.29402320984631514,
"multiplier": 0.8478906657573005
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7612945196451201,
"risk_attribution": 0.017994599988237374,
"age_attribution": 0.1842484250205912,
"multiplier": 0.8525427076577197
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 2.5940576570382077,
"risk_attribution": -0.06131533681154878,
"age_attribution": -0.632563754345765,
"multiplier": 0.6040102609062489
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 1.069215900501298,
"risk_attribution": -0.025272889708378175,
"age_attribution": -0.2607294492442067,
"multiplier": 0.7961164595410484
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": -0.22994765381829413,
"risk_attribution": 0.005435236878656034,
"age_attribution": 0.05565190863708118,
"multiplier": 0.9186515196209466
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 0.8543961929311139,
"risk_attribution": -0.02019522973899136,
"age_attribution": -0.20834543211977405,
"multiplier": 0.8498087438160962
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.0294535564746246,
"risk_attribution": 0.0006961891269608668,
"age_attribution": 0.007128346850880163,
"multiplier": 0.9393368215240633
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5981151517489337,
"risk_attribution": -0.014137554684674581,
"age_attribution": -0.14585102412618417,
"multiplier": 0.9299543139974223
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.6541703001544287,
"risk_attribution": -0.015462521496872793,
"age_attribution": -0.159520132455208,
"multiplier": 0.865582764276426
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.46985088436841826,
"risk_attribution": 0.011105792173928273,
"age_attribution": 0.11371326497893026,
"multiplier": 0.9860423528604816
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.8013836487038597,
"risk_attribution": -0.018942180487864654,
"age_attribution": -0.19541826609752744,
"multiplier": 0.9012393844374407
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 1.4160752101902845,
"risk_attribution": -0.03347154918770688,
"age_attribution": -0.3453114655965957,
"multiplier": 0.9356366906255845
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.11001010800794442,
"risk_attribution": 0.0026002917887659825,
"age_attribution": 0.026624635556627193,
"multiplier": 0.9208271628063133
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.09215642831350097,
"risk_attribution": -0.0021782871425623193,
"age_attribution": -0.022472444327873285,
"multiplier": 0.9128563443319991
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 1.0906177108564852,
"risk_attribution": -0.025778760966383856,
"age_attribution": -0.2659483037563035,
"multiplier": 0.8937808790134336
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 3.217606016200219,
"risk_attribution": -0.07605405225859105,
"age_attribution": -0.78461669349979,
"multiplier": 0.6140081898170111
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.06171192567212871,
"risk_attribution": -0.0014586751753991962,
"age_attribution": -0.015048519559753781,
"multiplier": 0.9249924509179095
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 2.0093577356084005,
"risk_attribution": -0.047494875836487774,
"age_attribution": -0.48998404858563777,
"multiplier": 0.903744941403726
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.082890348687649,
"risk_attribution": -0.025596110510345813,
"age_attribution": -0.2640639781664516,
"multiplier": 0.9296340710492724
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": -0.056692565621835736,
"risk_attribution": 0.0013400333436622961,
"age_attribution": 0.013720729174654979,
"multiplier": 0.9839984248441461
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.5813806875010127,
"risk_attribution": -0.013742004759661103,
"age_attribution": -0.1417703069906537,
"multiplier": 0.889745082990231
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.6650727734157102,
"risk_attribution": -0.03935706580797104,
"age_attribution": -0.40602978964366304,
"multiplier": 0.9352698239530806
}
]
},
{
"disease_code": "MACE3",
"disease_concept_code": "2000004701",
"disease_name": "Cardiovascular Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 90.62638464588046,
"health_score": {
"health_score": 227.7409537929391,
"max_score": 240.0
},
"risk_ratios": {
"your_risk_frac": 0.0011427730715538305,
"peer_risk_frac": 0.0029888420044625625,
"risk_ratio": 0.38234643043947647
},
"disease_age": {
"disease_age": 20.0,
"disease_age_delta": -8.0
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.10124577949191194,
"risk_attribution": -0.0022542417817672153,
"age_attribution": -0.029197490539833414,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.006501431265225126,
"risk_attribution": -0.000144754656173386,
"age_attribution": -0.0018748976877298088,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.3186229673704154,
"risk_attribution": -0.007094154534455636,
"age_attribution": -0.09188522348543454,
"multiplier": 0.93672182722712
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.4700353144873044,
"risk_attribution": -0.010465357174794816,
"age_attribution": -0.13554986407336644,
"multiplier": 0.9775387205647684
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.0017768059885657017,
"risk_attribution": -3.956066433207692e-05,
"age_attribution": -0.0005123993938573089,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 1.0286868833787848,
"risk_attribution": -0.022903759193770665,
"age_attribution": -0.2966550872207187,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.029414626871753332,
"risk_attribution": -0.0006549179750717022,
"age_attribution": -0.008482657688356836,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.005508645719813757,
"risk_attribution": -0.00012265024186563066,
"age_attribution": -0.0015885959108488533,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.07848836814590286,
"risk_attribution": -0.001747547006355514,
"age_attribution": -0.02263465596222736,
"multiplier": 0.9828577655568305
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.006525939352407167,
"risk_attribution": -0.00014530032982412188,
"age_attribution": -0.0018819653862278407,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.027582465982621884,
"risk_attribution": -0.0006141248314174542,
"age_attribution": -0.007954294921075838,
"multiplier": 0.9844358510979075
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": -0.00048540078720124986,
"risk_attribution": 1.0807470107918583e-05,
"age_attribution": 0.00013998099440252083,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.00848663211280116,
"risk_attribution": -0.00018895524130654786,
"age_attribution": -0.002447394469893464,
"multiplier": 0.9811279448461191
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.006513261180516502,
"risk_attribution": 0.00014501804976330569,
"age_attribution": 0.0018783092258851805,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.008351248952923064,
"risk_attribution": -0.00018594092923273687,
"age_attribution": -0.0024083523631544938,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.009581902967295414,
"risk_attribution": -0.00021334149557752284,
"age_attribution": -0.0027632511957059796,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": -0.0027549965246578922,
"risk_attribution": 6.134012010844774e-05,
"age_attribution": 0.00079449222841332,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.08605127388801574,
"risk_attribution": -0.001915935438949882,
"age_attribution": -0.024815664098735736,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.22734493145331836,
"risk_attribution": -0.005061845006546809,
"age_attribution": -0.06556225374231633,
"multiplier": 0.9814808856225005
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.0015815677619644111,
"risk_attribution": -3.5213676536522215e-05,
"age_attribution": -0.0004560961454373546,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.004168849381350604,
"risk_attribution": 9.281961682250341e-05,
"age_attribution": 0.0012022223640808481,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.010742173821008848,
"risk_attribution": -0.00023917497772100798,
"age_attribution": -0.003097852770655074,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.0028724119217764833,
"risk_attribution": -6.395437914557296e-05,
"age_attribution": -0.0008283527504400651,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.07269950964106288,
"risk_attribution": -0.001618657814373035,
"age_attribution": -0.020965251644539214,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.240193428615461,
"risk_attribution": -0.0053479173671051395,
"age_attribution": -0.06926753287815138,
"multiplier": 0.9787201566944507
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.24821788165541772,
"risk_attribution": -0.005526582170806359,
"age_attribution": -0.0715816430849891,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -2.3061472145645823,
"risk_attribution": 0.05134647026341338,
"age_attribution": 0.6650520329698437,
"multiplier": 1.0360204304230074
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.24914780337228007,
"risk_attribution": -0.005547286919176549,
"age_attribution": -0.07184981604653999,
"multiplier": 0.9882645141793811
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -1.7555575188557375,
"risk_attribution": 0.0390875662092792,
"age_attribution": 0.5062717113360619,
"multiplier": 0.9739584940509027
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.792206069493112,
"risk_attribution": -0.017638503358686834,
"age_attribution": -0.22845820670946124,
"multiplier": 0.9920927705484802
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 1.2132120947820404,
"risk_attribution": -0.02701222122964127,
"age_attribution": -0.34986889170071395,
"multiplier": 0.9470047993029092
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 7.130175563784442,
"risk_attribution": -0.15875367593473372,
"age_attribution": -2.0562164133229714,
"multiplier": 0.8082787461633085
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.41108933073392884,
"risk_attribution": 0.009152922225791874,
"age_attribution": 0.118550885828176,
"multiplier": 0.9626354830626176
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 0.11263345923473317,
"risk_attribution": -0.002507788977536521,
"age_attribution": -0.03248149579151145,
"multiplier": 1.0833308128868426
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": 0.16716745589316317,
"risk_attribution": -0.003721990837713885,
"age_attribution": -0.048208135060074896,
"multiplier": 0.9393840223884485
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5696108992220785,
"risk_attribution": 0.012682411996037625,
"age_attribution": 0.16426570001124075,
"multiplier": 0.9226683780549032
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 3.5753910186610853,
"risk_attribution": -0.07960623999210677,
"age_attribution": -1.0310794777564216,
"multiplier": 0.8913856849832998
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.2177592767313787,
"risk_attribution": -0.0048484199779853295,
"age_attribution": -0.062797920606985,
"multiplier": 1.004397631361433
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 7.811908524469356,
"risk_attribution": -0.17393249061417987,
"age_attribution": -2.2528161310611368,
"multiplier": 0.6321569861110302
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.208205144508601,
"risk_attribution": -0.0046356967992691785,
"age_attribution": -0.06004267800239668,
"multiplier": 0.9719017468370872
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": 2.08637074945048,
"risk_attribution": -0.04645313749640267,
"age_attribution": -0.6016723909418062,
"multiplier": 0.8892691859431683
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": -0.015274516038001002,
"risk_attribution": 0.0003400877786899348,
"age_attribution": 0.004404900033938649,
"multiplier": 0.7676900553231034
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.6969125849881844,
"risk_attribution": 0.015516789689443415,
"age_attribution": 0.20097725267559302,
"multiplier": 1.0402817372449003
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 2.248985483480527,
"risk_attribution": -0.0500737617794206,
"age_attribution": -0.6485676016094185,
"multiplier": 1.134002501631911
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.957737331058622,
"risk_attribution": 0.043589108716875775,
"age_attribution": 0.5645767901626868,
"multiplier": 0.9392060692124596
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.516968196773535,
"risk_attribution": 0.011510319885530184,
"age_attribution": 0.14908447651287854,
"multiplier": 0.9712156352705504
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 0.45877165228751415,
"risk_attribution": -0.010214571235134905,
"age_attribution": -0.13230162328572426,
"multiplier": 0.6621041115975498
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 0.3804598864176192,
"risk_attribution": -0.008470956286306432,
"age_attribution": -0.10971789629366167,
"multiplier": 0.9286967809937826
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.24182964444081612,
"risk_attribution": -0.005384347785202704,
"age_attribution": -0.06973938855768366,
"multiplier": 0.9734309408317565
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": -0.024521986631745117,
"risk_attribution": 0.0005459831226014996,
"age_attribution": 0.007071706853276741,
"multiplier": 0.9565685419756762
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.1936562875196359,
"risk_attribution": -0.004311765851568776,
"age_attribution": -0.05584704519249144,
"multiplier": 0.9718741161411547
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 1.4436417281967187,
"risk_attribution": -0.03214274726250338,
"age_attribution": -0.416320718882901,
"multiplier": 0.9601615885967577
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.06398045918728891,
"risk_attribution": -0.0014245277683714256,
"age_attribution": -0.018450831839408155,
"multiplier": 0.9576610745836363
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.35388885536560805,
"risk_attribution": 0.007879351098587348,
"age_attribution": 0.10205528130202449,
"multiplier": 0.9980274136667276
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.5648784694250416,
"risk_attribution": -0.012577044236203122,
"age_attribution": -0.16290095103184804,
"multiplier": 0.9842652624417659
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.19819581663845617,
"risk_attribution": -0.004412838669226435,
"age_attribution": -0.0571561650310388,
"multiplier": 0.9960834825558003
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.9322674189317208,
"risk_attribution": 0.0207569755310546,
"age_attribution": 0.26884942050377814,
"multiplier": 0.9733644862465585
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.0080991314042798,
"risk_attribution": -0.022445371980728396,
"age_attribution": -0.29071794399826895,
"multiplier": 0.9602483972541455
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 3.1861045162834642,
"risk_attribution": -0.07093875870902022,
"age_attribution": -0.9188161416697712,
"multiplier": 0.8172926233952063
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": -2.0671743555744078,
"risk_attribution": 0.046025728933281676,
"age_attribution": 0.5961364907649466,
"multiplier": 0.8571046879022434
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.4346581609116799,
"risk_attribution": -0.00967768327756793,
"age_attribution": -0.12534771923301735,
"multiplier": 0.9278548247986482
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 0.985135130011616,
"risk_attribution": -0.021934077468742947,
"age_attribution": -0.2840955325082909,
"multiplier": 0.9569364101755402
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 0.44598165445815224,
"risk_attribution": -0.009929801364821814,
"age_attribution": -0.12861321432190057,
"multiplier": 0.9259796203850893
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.0558845112708664,
"risk_attribution": -0.023509315587992366,
"age_attribution": -0.30449840164893544,
"multiplier": 0.9452018398658103
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -1.1340789725820224,
"risk_attribution": 0.02525031874560517,
"age_attribution": 0.3270483000827978,
"multiplier": 1.0022960370299276
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.0158790829349151,
"risk_attribution": -0.022618592947454056,
"age_attribution": -0.29296154429801513,
"multiplier": 0.9190740117034101
}
]
},
{
"disease_code": "Mortality",
"disease_concept_code": "2000000202",
"disease_name": "Longevity Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 54.20428047006672,
"health_score": {
"health_score": 208.8093179148903,
"max_score": 225.0
},
"risk_ratios": {
"your_risk_frac": 0.001036037219426633,
"peer_risk_frac": 0.0014059465303574309,
"risk_ratio": 0.7368966010131576
},
"disease_age": {
"disease_age": 25.01443474910033,
"disease_age_delta": -2.9855652508996684
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.025085588625088483,
"risk_attribution": -0.0007492184635192198,
"age_attribution": -0.00854285957236935,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.04947217869177015,
"risk_attribution": -0.0014775602940935804,
"age_attribution": -0.01684767623432495,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.010587925216227959,
"risk_attribution": -0.00031622415486894854,
"age_attribution": -0.0036057020481680964,
"multiplier": 1.0039710406209126
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": -0.12739536583173433,
"risk_attribution": 0.0038048523267444055,
"age_attribution": 0.04338430071290735,
"multiplier": 0.9978459191746544
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.6326628833981982,
"risk_attribution": -0.01889541921895267,
"age_attribution": -0.21545239580767572,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.050874402230749634,
"risk_attribution": -0.0015194397883755684,
"age_attribution": -0.017325201356880465,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.4998398660582558,
"risk_attribution": -0.014928461996673524,
"age_attribution": -0.17021971651632006,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.010678431290300055,
"risk_attribution": -0.00031892725355915175,
"age_attribution": -0.0036365237559143164,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.03874856654603105,
"risk_attribution": -0.0011572836470002197,
"age_attribution": -0.0131957662058721,
"multiplier": 0.9995360967321718
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.08317921410135871,
"risk_attribution": -0.0024842711054995775,
"age_attribution": -0.02832655657508796,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.029475423091105284,
"risk_attribution": -0.0008803274074984533,
"age_attribution": -0.010037811114053425,
"multiplier": 0.9916179822419859
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.0858887173979774,
"risk_attribution": -0.002565194456636839,
"age_attribution": -0.02924927385790012,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.0049137248673311144,
"risk_attribution": -0.0001467557110290855,
"age_attribution": -0.001673361631900749,
"multiplier": 0.9988265763723866
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.08368932491736697,
"risk_attribution": 0.0024995063247127323,
"age_attribution": 0.028500274048201067,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.008628228769250436,
"risk_attribution": -0.00025769490196155757,
"age_attribution": -0.0029383303631259207,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.025674840463928594,
"risk_attribution": -0.0007668173472416505,
"age_attribution": -0.008743528402078891,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.15015977194286964,
"risk_attribution": -0.004484745217615415,
"age_attribution": -0.051136685062434635,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.12374378938603202,
"risk_attribution": -0.0036957925580078685,
"age_attribution": -0.04214076183249185,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.33486489220147087,
"risk_attribution": -0.010001238710053598,
"age_attribution": -0.1140377366681654,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.18006326883388868,
"risk_attribution": -0.005377857686666041,
"age_attribution": -0.06132027606684377,
"multiplier": 0.9920485510573975
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.30088454600364706,
"risk_attribution": -0.00898636506492322,
"age_attribution": -0.10246578074849522,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.11003316636935156,
"risk_attribution": -0.0032863043827862136,
"age_attribution": -0.037471629733113694,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.059706030836340906,
"risk_attribution": -0.001783209529366852,
"age_attribution": -0.020332799229127733,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.03260218395660563,
"risk_attribution": -0.0009737127773398169,
"age_attribution": -0.011102624835970036,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.04282950690442011,
"risk_attribution": -0.0012791670084282213,
"age_attribution": -0.0145855243226127,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.03152444443762581,
"risk_attribution": -0.0009415244815596475,
"age_attribution": -0.01073560225962796,
"multiplier": 0.9860347479925574
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": -0.04368958180836513,
"risk_attribution": 0.001304854426318853,
"age_attribution": 0.014878421540849509,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.34563607564350063,
"risk_attribution": 0.010322936144757216,
"age_attribution": 0.11770584703020263,
"multiplier": 1.0010343319752453
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.4325495130611308,
"risk_attribution": -0.012918735390866437,
"age_attribution": -0.1473040877534899,
"multiplier": 0.9519663402092192
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -1.9720425446242686,
"risk_attribution": 0.05889798750029193,
"age_attribution": 0.6715761300739109,
"multiplier": 0.9315665327246904
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.0769168654824746,
"risk_attribution": -0.03216372600831757,
"age_attribution": -0.366742422927718,
"multiplier": 0.9331111163275615
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.7802194657835174,
"risk_attribution": -0.02330241630357803,
"age_attribution": -0.2657025685716439,
"multiplier": 0.9188682579103535
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 3.436375441508879,
"risk_attribution": -0.10263247025376036,
"age_attribution": -1.1702525012863052,
"multiplier": 1.2555102877055708
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.3456678783528228,
"risk_attribution": 0.010323885980033965,
"age_attribution": 0.11771667739515125,
"multiplier": 0.9599744349107925
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.025206043682009505,
"risk_attribution": 0.0007528160331843474,
"age_attribution": 0.008583880361294706,
"multiplier": 1.0556179473606189
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5371028332782399,
"risk_attribution": 0.016041376007341873,
"age_attribution": 0.18290956410043285,
"multiplier": 0.954348462234309
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5173885523553305,
"risk_attribution": 0.015452579647679161,
"age_attribution": 0.17619589530789675,
"multiplier": 0.9307265659474604
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 3.6099068449246,
"risk_attribution": -0.10781524405199734,
"age_attribution": -1.2293483603842277,
"multiplier": 0.854964755146972
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.49929588176390266,
"risk_attribution": -0.01491221509558282,
"age_attribution": -0.17003446348097426,
"multiplier": 0.956711053819577
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 1.293074057604392,
"risk_attribution": -0.0386195824676013,
"age_attribution": -0.44035443042147043,
"multiplier": 1.0528868082146048
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4961287409493459,
"risk_attribution": -0.014817623718426215,
"age_attribution": -0.1689558984279853,
"multiplier": 0.8977440694876704
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -2.5283746590126577,
"risk_attribution": 0.07551367462559244,
"age_attribution": 0.8610341970082509,
"multiplier": 1.1105494560821605
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.6663323267139587,
"risk_attribution": -0.01990100728649169,
"age_attribution": -0.226918474217282,
"multiplier": 0.8411992300999819
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.0517677459791015,
"risk_attribution": 0.03141261010050371,
"age_attribution": 0.35817792801005915,
"multiplier": 0.974569934172851
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": -1.53027443242468,
"risk_attribution": 0.045703924917166294,
"age_attribution": 0.5211326622137471,
"multiplier": 1.1922854202475428
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.2929300859605968,
"risk_attribution": 0.038615282540046605,
"age_attribution": 0.4403054010941651,
"multiplier": 0.9749501276967308
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": 0.29798309548423174,
"risk_attribution": -0.008899708924115773,
"age_attribution": -0.10147769612692277,
"multiplier": 0.9350733228183598
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -1.1528572464518607,
"risk_attribution": 0.034431798581749044,
"age_attribution": 0.3926038057395558,
"multiplier": 0.9658046552012567
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 0.32416742535983706,
"risk_attribution": -0.009681742931404776,
"age_attribution": -0.1103947303838019,
"multiplier": 0.9072297067190582
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.17662674359601002,
"risk_attribution": -0.00527522074252061,
"age_attribution": -0.06014997255262847,
"multiplier": 0.9202212128361462
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 0.9946613073321731,
"risk_attribution": -0.02970704126337002,
"age_attribution": -0.3387304160010754,
"multiplier": 0.899959449440469
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.17745700303425702,
"risk_attribution": -0.0053000176771248715,
"age_attribution": -0.06043271615875157,
"multiplier": 0.9162881355339195
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.42664762632777753,
"risk_attribution": -0.012742466754068132,
"age_attribution": -0.14529420908057564,
"multiplier": 0.9179389734313906
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.6150193571051542,
"risk_attribution": 0.018368469030224988,
"age_attribution": 0.20944391939775256,
"multiplier": 0.9150325357642368
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.7675051224661851,
"risk_attribution": 0.022922683505307524,
"age_attribution": 0.2613727180292399,
"multiplier": 0.9939025531550033
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.3045717712867123,
"risk_attribution": -0.00909648953927837,
"age_attribution": -0.10372145978699358,
"multiplier": 0.9029905271132879
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 1.1758182415135157,
"risk_attribution": -0.03511756289440148,
"age_attribution": -0.4004231381612559,
"multiplier": 0.9254087230039726
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.41118364161277066,
"risk_attribution": -0.012280611820495838,
"age_attribution": -0.1400279722852609,
"multiplier": 0.9139144464705009
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.292327965822728,
"risk_attribution": -0.038597299325409305,
"age_attribution": -0.44010034998452663,
"multiplier": 0.9053945344637542
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -3.0988832026076714,
"risk_attribution": 0.09255276192168878,
"age_attribution": 1.0553200256411426,
"multiplier": 1.1013480268295177
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 0.6861882512621958,
"risk_attribution": -0.02049403404397051,
"age_attribution": -0.23368037953392684,
"multiplier": 0.8446431162475538
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": -0.5336433364718864,
"risk_attribution": 0.01593805298309306,
"age_attribution": 0.18173143765303587,
"multiplier": 0.9701181183050102
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.3236381837464808,
"risk_attribution": -0.03953242561309087,
"age_attribution": -0.45076299772624207,
"multiplier": 0.9212254239715811
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.1472501821890781,
"risk_attribution": -0.03426433525710479,
"age_attribution": -0.39069432841669577,
"multiplier": 0.9204819849101593
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.01730796466969315,
"risk_attribution": -0.0005169281411042314,
"age_attribution": -0.005894201402507337,
"multiplier": 0.9651753447174933
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -0.32512726419664206,
"risk_attribution": 0.009710409947725769,
"age_attribution": 0.11072160205970631,
"multiplier": 0.9429063423572424
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 2.4011007621248517,
"risk_attribution": -0.07171245014975859,
"age_attribution": -0.8176912623619682,
"multiplier": 0.8978602574558445
}
]
},
{
"disease_code": "T2D",
"disease_concept_code": "2000000207",
"disease_name": "Metabolic Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 67.80497131931166,
"health_score": {
"health_score": 251.54276548522517,
"max_score": 275.0
},
"risk_ratios": {
"your_risk_frac": 0.0006440175990631461,
"peer_risk_frac": 0.003843205958119163,
"risk_ratio": 0.16757301224062515
},
"disease_age": {
"disease_age": 20.0,
"disease_age_delta": -8.0
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.03670002499206265,
"risk_attribution": -0.0005927134674912569,
"age_attribution": -0.007115027747079737,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.0642016045802929,
"risk_attribution": 0.0010368700205931184,
"age_attribution": 0.015843773045430415,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 1.0093395974344352,
"risk_attribution": -0.016301056274511543,
"age_attribution": -0.1956805000412256,
"multiplier": 0.9651324695066987
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.025883740014275396,
"risk_attribution": -0.00041802808850461,
"age_attribution": -0.00501807637568633,
"multiplier": 1.0028179558420587
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.014237273684958784,
"risk_attribution": 0.00022993509828015158,
"age_attribution": 0.003513496812498773,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.583762527201949,
"risk_attribution": -0.009427893080840103,
"age_attribution": -0.11317394414978076,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.09355944738829015,
"risk_attribution": -0.0015110056325594505,
"age_attribution": -0.018138354519189066,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": -0.0524214323175732,
"risk_attribution": 0.0008466176501658226,
"age_attribution": 0.012936643589916828,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.1199451619646537,
"risk_attribution": -0.001937140720537549,
"age_attribution": -0.023253748619818573,
"multiplier": 1.0026233495051875
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.012553748374730129,
"risk_attribution": -0.00020274579460935759,
"age_attribution": -0.002433793111459185,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.06273067786006052,
"risk_attribution": -0.0010131142308637373,
"age_attribution": -0.012161586093305981,
"multiplier": 1.0105451827361127
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.011320629595156064,
"risk_attribution": -0.00018283065537367575,
"age_attribution": -0.0021947285785600353,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.07596771617795474,
"risk_attribution": -0.001226895308190267,
"age_attribution": -0.0147278485125099,
"multiplier": 0.9986702878200189
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.0040169836577335595,
"risk_attribution": 6.487516869936484e-05,
"age_attribution": 0.0009913175506499636,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.005451838825543951,
"risk_attribution": -8.804839493135188e-05,
"age_attribution": -0.001056947087222452,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.004137780823641522,
"risk_attribution": -6.682606947079237e-05,
"age_attribution": -0.0008021908807394856,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.15865220434108407,
"risk_attribution": -0.002562267959775858,
"age_attribution": -0.03075787649371665,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": -0.012641881913343306,
"risk_attribution": 0.00020416917062299759,
"age_attribution": 0.0031197835196104247,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.07369719534509969,
"risk_attribution": -0.001190225897852162,
"age_attribution": -0.014287663015917457,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.014546005258763227,
"risk_attribution": -0.00023492118103277205,
"age_attribution": -0.002820031622530276,
"multiplier": 1.006407666181046
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.00020092862138158427,
"risk_attribution": -3.2450413841155074e-06,
"age_attribution": -3.895399844064526e-05,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.002067139561670307,
"risk_attribution": 3.338475812076289e-05,
"age_attribution": 0.0005101319551503558,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.003879814368808409,
"risk_attribution": -6.265985454386439e-05,
"age_attribution": -0.0007521789670050848,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": -0.001102369729432511,
"risk_attribution": 1.780351334721584e-05,
"age_attribution": 0.00027204453719592,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.03725075652589553,
"risk_attribution": -0.0006016079027714907,
"age_attribution": -0.007221797978033536,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 1.0017500573231581
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.07069634535226649,
"risk_attribution": -0.0011417615111097017,
"age_attribution": -0.01370588872643264,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": 9.50129165615617,
"risk_attribution": -0.15344794790695754,
"age_attribution": -1.842013834630059,
"multiplier": 1.3214966157876726
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.019926797009401694,
"risk_attribution": -0.00032182215009366616,
"age_attribution": -0.003863204825146091,
"multiplier": 0.9687737917575274
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": 2.0252557385860532,
"risk_attribution": -0.03270832517507886,
"age_attribution": -0.3926359935201331,
"multiplier": 0.6961928543863765
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.919911539750936,
"risk_attribution": -0.014856773493449167,
"age_attribution": -0.17834309735762643,
"multiplier": 0.7894250990788122
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": -1.4844652986946023,
"risk_attribution": 0.023974440746294193,
"age_attribution": 0.3663386832788572,
"multiplier": 1.0195532286093811
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 13.566978896830925,
"risk_attribution": -0.21910969017215967,
"age_attribution": -2.630227944418956,
"multiplier": 1.720408766386811
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -5.248216167066128,
"risk_attribution": 0.08475984425618802,
"age_attribution": 1.2951630475272942,
"multiplier": 0.9884321765039126
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 0.8308130111016325,
"risk_attribution": -0.01341781267869443,
"age_attribution": -0.16106958041313177,
"multiplier": 1.2028811966565254
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -2.010208965505931,
"risk_attribution": 0.032465316483700525,
"age_attribution": 0.49608253300793326,
"multiplier": 0.9887038879330063
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -2.290028490414167,
"risk_attribution": 0.036984463293981626,
"age_attribution": 0.5651368358607799,
"multiplier": 0.994924265366541
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 1.8216741043628477,
"risk_attribution": -0.02942043705064107,
"age_attribution": -0.3531676559207113,
"multiplier": 0.8270516664906032
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 3.2756951611470493,
"risk_attribution": -0.05290319660075736,
"age_attribution": -0.6350584765971349,
"multiplier": 0.9964280841295855
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 9.321172945778805,
"risk_attribution": -0.15053899115799318,
"age_attribution": -1.8070942501779959,
"multiplier": 0.3498302874563115
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.5090042359625007,
"risk_attribution": -0.024370749974959624,
"age_attribution": -0.2925504004876325,
"multiplier": 0.8788303663034519
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -18.747918572072976,
"risk_attribution": 0.3027830043031415,
"age_attribution": 4.626640858464023,
"multiplier": 1.4172019165518153
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.14052502493510913,
"risk_attribution": -0.0022695100293963766,
"age_attribution": -0.03096127505217863,
"multiplier": 0.4637931499498156
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.3340034318104277,
"risk_attribution": 0.0215444485360596,
"age_attribution": 0.3292074669099072,
"multiplier": 0.9525891605762435
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 2.320990193178776,
"risk_attribution": -0.037484501596653466,
"age_attribution": -0.44996998309234176,
"multiplier": 1.2659561050639456
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": 2.0710711593523423,
"risk_attribution": -0.03344825428719339,
"age_attribution": -0.4015182215313342,
"multiplier": 0.634117956487148
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0515971585780999,
"risk_attribution": 0.016983525171974212,
"age_attribution": 0.2595148022335441,
"multiplier": 0.7540186331390297
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 9.443959706184714,
"risk_attribution": -0.15252202431772385,
"age_attribution": -1.830898899015456,
"multiplier": 0.38122529602781324
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 3.474317346102644,
"risk_attribution": -0.056110988529814124,
"age_attribution": -0.6735653265911145,
"multiplier": 0.743563984381393
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": -0.6439022255361412,
"risk_attribution": 0.010399162423061164,
"age_attribution": 0.15890320485811799,
"multiplier": 0.914323261314982
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.8025849221933294,
"risk_attribution": -0.029112142564255445,
"age_attribution": -0.3494668393453941,
"multiplier": 0.8113886156660141
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.21933963547335983,
"risk_attribution": 0.0035423833070359085,
"age_attribution": 0.05412898052978066,
"multiplier": 0.9346073007951265
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 2.2929243485890787,
"risk_attribution": -0.03703123203979545,
"age_attribution": -0.4445288624652001,
"multiplier": 0.9196388527697433
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.2944837028252969,
"risk_attribution": 0.004755976505710729,
"age_attribution": 0.0726731517637825,
"multiplier": 0.9408820635237103
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.06965798516890731,
"risk_attribution": 0.0011249917659959918,
"age_attribution": 0.017190307236602875,
"multiplier": 1.0026385992028737
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": -0.4053311159079821,
"risk_attribution": 0.006546186582812408,
"age_attribution": 0.10002825086194785,
"multiplier": 0.9725054980980149
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": -2.707077435950417,
"risk_attribution": 0.04371989539997677,
"age_attribution": 0.6680568311647704,
"multiplier": 0.9677564564019954
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.22341403937543092,
"risk_attribution": -0.0036081858252979193,
"age_attribution": -0.04331324269090138,
"multiplier": 0.9503507198866034
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.4548218745097041,
"risk_attribution": -0.023495692932341883,
"age_attribution": -0.28204607507580165,
"multiplier": 0.8634941521782143
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -0.23410841351606831,
"risk_attribution": 0.003780902317477882,
"age_attribution": 0.057773642824386844,
"multiplier": 0.7974873819890199
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 12.601905584772343,
"risk_attribution": -0.20352354413282517,
"age_attribution": -2.443129341768194,
"multiplier": 0.47652137173595394
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 1.122903587716,
"risk_attribution": -0.018135139670271833,
"age_attribution": -0.21769713196714888,
"multiplier": 0.9190113994958621
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 2.4959265756124234,
"risk_attribution": -0.04030976261064593,
"age_attribution": -0.48388487048706,
"multiplier": 0.9249438399450247
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.9860712087303949,
"risk_attribution": -0.032075486408135644,
"age_attribution": -0.3850392952279771,
"multiplier": 0.9177055155653392
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.344492156710703,
"risk_attribution": -0.021713843747821683,
"age_attribution": -0.26065647101866146,
"multiplier": 0.9927157506396581
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 1.374082987725809,
"risk_attribution": -0.022191742170525875,
"age_attribution": -0.26639324051070296,
"multiplier": 0.8361454922483974
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": -0.767673148715377,
"risk_attribution": 0.012398090027825057,
"age_attribution": 0.18944758812228885,
"multiplier": 0.9437333548971151
}
]
}
],
"errors": null
}
],
"validations": [
{
"code": "30525-0",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "6b0ca208-86a7-440d-b0c1-0818ad53002e",
"validated_value": null,
"validated_unit": null
},
{
"code": "8302-2",
"qa_status": "FLAGGED",
"severity": "BORDERLINE",
"message": "Value is above the borderline upper threshold",
"return_code": "value_over_borderline_maximum",
"id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
"validated_value": 198.12,
"validated_unit": "cm"
},
{
"code": "29463-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "1f796753-f375-494a-8539-b0f140ff4f56",
"validated_value": 95.25431999999999,
"validated_unit": "kg"
},
{
"code": "64219-9",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "8835a752-bc03-473c-a4ba-37387c045f14",
"validated_value": null,
"validated_unit": null
},
{
"code": "4548-4",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
"validated_value": 5.4,
"validated_unit": "%"
},
{
"code": "2885-2",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "a624e601-d519-40d9-b972-b45e15d2a43e",
"validated_value": 8.1,
"validated_unit": "g/dL"
},
{
"code": "2571-8",
"qa_status": "FLAGGED",
"severity": "UNUSUAL",
"message": "Value is below the unusual lower threshold",
"return_code": "value_under_unusual_minimum",
"id": "3197ae19-9438-40d5-aded-67228b498a9e",
"validated_value": 40.0,
"validated_unit": "mg/dL"
},
{
"code": "10835-7",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "LOINC or observation code not found in any mapping",
"return_code": "invalid_code",
"id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
"validated_value": null,
"validated_unit": null
},
{
"code": "1751-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
"validated_value": 4.8,
"validated_unit": "g/dL"
},
{
"code": "17861-6",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "f644ac87-420c-4656-8f07-daa6350bca0c",
"validated_value": 9.6,
"validated_unit": "mg/dL"
},
{
"code": "2160-0",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
"validated_value": 0.83,
"validated_unit": "mg/dL"
},
{
"code": "2498-4",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
"validated_value": null,
"validated_unit": null
},
{
"code": "2086-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
"validated_value": 76.0,
"validated_unit": "mg/dL"
},
{
"code": "1975-2",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "852a0141-90a0-4397-9480-081786fedc54",
"validated_value": 0.7,
"validated_unit": "mg/dL"
},
{
"code": "77147-7",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "LOINC or observation code not found in any mapping",
"return_code": "invalid_code",
"id": "120c6aff-1613-4a14-9a29-88803c8eef71",
"validated_value": null,
"validated_unit": null
},
{
"code": "13457-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
"validated_value": 80.0,
"validated_unit": "mg/dL"
},
{
"code": "2276-4",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "199bd4d3-07ac-494f-93e4-d96979f86824",
"validated_value": null,
"validated_unit": null
}
]
},
{
"uid_ext": "SPOT1WJOQK",
"data": [
{
"scoring_predictors": [
{
"predictor_id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
"predictor_code": "10835-7",
"predictor_name": null,
"value": "6.2",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "199bd4d3-07ac-494f-93e4-d96979f86824",
"predictor_code": "2276-4",
"predictor_name": "Ferritin [Mass/volume] in Serum or Plasma",
"value": "89.6",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
"predictor_code": "2498-4",
"predictor_name": "Iron [Mass/volume] in Serum or Plasma",
"value": "106.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "120c6aff-1613-4a14-9a29-88803c8eef71",
"predictor_code": "77147-7",
"predictor_name": null,
"value": "117.25",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6b0ca208-86a7-440d-b0c1-0818ad53002e",
"predictor_code": "30525-0",
"predictor_name": "Age",
"value": "28.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "04cc19a4-fa9f-4264-a755-2b8361ab8ef3",
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "018bfdf4-7be8-4893-9207-9ce6899198f5",
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "112de788-adca-420c-8909-1c02ea1d985f",
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 43.243649030088285,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c17f3a14-572c-4e33-8b67-01fbb8f0b5a2",
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.834844754068826,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b90a01f0-f538-470e-8b25-f732695b5f63",
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "64b7d0b4-e95f-445c-bff4-85ac8b64d10e",
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "dcf2b264-7cb0-4abc-b65a-3513e387902f",
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "73947699-caba-49de-9507-09073c94d6f4",
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0fe43d14-fb1e-440e-857b-837b981cd4b0",
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.86487298060177,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b944324d-3ff9-465d-a360-f3256e0b0816",
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "e3117e5a-c540-41df-b079-014d7eed82e6",
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.909915320401176,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "51d955e6-e0b3-43f8-b190-3a0fc9df1ca8",
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6d39fcdc-4364-49bf-8dec-79a623419da3",
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.822833463455645,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c1fb701f-e0d0-4db9-9197-be85c653b048",
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0405a74e-f007-4c6d-8f8c-d46be07be5d9",
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "ad74bbda-ed0d-4f72-b97b-9f753b4ce778",
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "35501f10-1e5a-4263-a341-3377746589a0",
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "3d9c85b5-3c86-41b5-9efe-638bc4129307",
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0fe959a9-eeb4-48da-b45d-997631fe629f",
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "985dc295-6db0-44d6-99b8-8cadda82827b",
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.672692330790944,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "46dbf260-32ac-49a2-be68-e8a8edcedf44",
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b7e6b89d-bf44-46ee-acdc-046d8ec489ca",
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "998d56d6-762c-4c86-9a02-04b5cfada2f5",
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "b9d2cdbe-3ca8-40b9-b0e3-23362cf4ae85",
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "032732c3-b3bf-4153-af44-d9972fd082da",
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "15b9f99e-cd1a-4b58-a86f-32f1b4dfe733",
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 49.68470362140412,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1106a2d7-f17a-4da3-bca2-6da352bd4de6",
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 50.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1b46a087-3885-4d56-9fc7-02ad884de8d2",
"predictor_code": "77233-5",
"predictor_name": "Percentage of body fat by Bioelectrical impedance analysis",
"value": "20.436241024045124",
"imputation_code": "SIDEWAYS",
"percentile": 29.804718297046517,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"value": "5.4",
"imputation_code": "GIVEN",
"percentile": 73.54624983918693,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "deb0af1d-8c1a-442f-91e5-256b71f1443c",
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"value": "78.32361224268618",
"imputation_code": "SIDEWAYS",
"percentile": 53.22488221062015,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "381a789e-3f33-417a-8293-3b627e4e9f63",
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"value": "23.055872833565854",
"imputation_code": "SIDEWAYS",
"percentile": 39.74432542718694,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "da718726-4c29-4131-8136-56f58c5f3d32",
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"value": "25.677798707107822",
"imputation_code": "SIDEWAYS",
"percentile": 44.18314455749664,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6c631bcc-7b68-495e-b015-53f4cadbc778",
"predictor_code": "1916-6",
"predictor_name": "Aspartate aminotransferase/Alanine aminotransferase [Enzymatic activity ratio] in Serum or Plasma",
"value": "1.1137205211214056",
"imputation_code": "SIDEWAYS",
"percentile": 60.563876088069634,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"value": "4.8",
"imputation_code": "GIVEN",
"percentile": 69.0258435529689,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6a33383a-c2d9-4195-ae51-568da13dc6a2",
"predictor_code": "1869-7",
"predictor_name": "Apolipoprotein A-I [Mass/volume] in Serum or Plasma",
"value": "177.09699348765676",
"imputation_code": "SIDEWAYS",
"percentile": 95.51415487094089,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "980f897e-2419-4956-b6c5-a6fe20c03891",
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"value": "53.755431096377684",
"imputation_code": "SIDEWAYS",
"percentile": 0.790527018012008,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "7abdec59-1e79-4654-ad9e-6f0994b9742b",
"predictor_code": "3097-3",
"predictor_name": "Urea nitrogen/Creatinine [Mass Ratio] in Serum or Plasma",
"value": "17.41129267244571",
"imputation_code": "SIDEWAYS",
"percentile": 65.88561591430758,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "852a0141-90a0-4397-9480-081786fedc54",
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"value": "0.7",
"imputation_code": "GIVEN",
"percentile": 73.62711213517666,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "07151fca-f64e-4cba-9886-4ccc5bee010f",
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"value": "1.654981082712587",
"imputation_code": "SIDEWAYS",
"percentile": 69.4201417715052,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "f644ac87-420c-4656-8f07-daa6350bca0c",
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"value": "9.6",
"imputation_code": "GIVEN",
"percentile": 52.8288150870138,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"value": "0.83",
"imputation_code": "GIVEN",
"percentile": 28.15765995411675,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "8486b5e4-ff52-47f5-a86b-09457c65d50d",
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"value": "0.8083607466251386",
"imputation_code": "SIDEWAYS",
"percentile": 31.96089670105719,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "21a6242d-ddc8-49c1-8495-a4bb5b0db100",
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"value": "30.744187712381446",
"imputation_code": "SIDEWAYS",
"percentile": 50.64359905690436,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "a75cac60-c6b1-4ea9-bb0a-e1db16d47645",
"predictor_code": "2339-0",
"predictor_name": "Glucose [Mass/volume] in Blood",
"value": "85.7442385345538",
"imputation_code": "SIDEWAYS",
"percentile": 44.10560643907854,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"value": "76.0",
"imputation_code": "GIVEN",
"percentile": 98.13722769529623,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "31b43ffe-58a8-45f7-b2d5-83eb6b18a616",
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"value": "193.337740500062",
"imputation_code": "SIDEWAYS",
"percentile": 58.47104791186267,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"value": "80.0",
"imputation_code": "GIVEN",
"percentile": 6.254557507457739,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "754234ab-a9e3-4729-98be-77a13d5e784a",
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"value": "1.488221717663628",
"imputation_code": "SIDEWAYS",
"percentile": 96.52717427635538,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "0d57f46d-1cb9-4a9e-a2bf-62cb9bf818b6",
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"value": "41.47289534270046",
"imputation_code": "SIDEWAYS",
"percentile": 66.44825669128743,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "a624e601-d519-40d9-b972-b45e15d2a43e",
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"value": "8.1",
"imputation_code": "GIVEN",
"percentile": 95.63995837669094,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "6c0ee429-ec3f-4c5a-ac4e-395c4f5d86df",
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"value": "43.258524883544034",
"imputation_code": "SIDEWAYS",
"percentile": 83.47410302945694,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "5dad6ccf-0a4a-4732-a89c-3537a729d97d",
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"value": "558.6263467193654",
"imputation_code": "SIDEWAYS",
"percentile": 74.24106283293756,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "3197ae19-9438-40d5-aded-67228b498a9e",
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"value": "40.0",
"imputation_code": "GIVEN",
"percentile": 0.4880694143167028,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c2c3882e-8fbe-43ba-8fce-20049234ccc8",
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"value": "5.316226069713219",
"imputation_code": "SIDEWAYS",
"percentile": 31.277884002549396,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "de7e78d9-2556-4d22-92d2-1d5199c7a0f6",
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"value": "14.45137291812994",
"imputation_code": "SIDEWAYS",
"percentile": 51.33885878227606,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "92dfeabe-05ff-4e2f-bf41-0867d0c776e8",
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"value": "42.15577586595457",
"imputation_code": "SIDEWAYS",
"percentile": 70.5872660163459,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "4b54309b-710b-46b6-a5ed-bbe8d94bc0c3",
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"value": "43.60129333093285",
"imputation_code": "SIDEWAYS",
"percentile": 50.99028517706048,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "a6b58be4-24ce-4874-87d9-d8a8e5f926c1",
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"value": "15.122401112344287",
"imputation_code": "SIDEWAYS",
"percentile": 50.90880601692259,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "184e7a0e-40ee-4ef5-803b-44bf90a2588b",
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"value": "31.067829004505402",
"imputation_code": "SIDEWAYS",
"percentile": 45.60639298025697,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "33f40845-8fd9-4798-801f-9fda422596d9",
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"value": "34.697917583819034",
"imputation_code": "SIDEWAYS",
"percentile": 51.44155437167033,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c0c1d6ab-abad-413e-9a3a-9e498b0a402d",
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"value": "89.59648551762287",
"imputation_code": "SIDEWAYS",
"percentile": 46.734565966781574,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "fcdf66a0-92ac-4990-ae0d-ca547dd11e59",
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"value": "13.124054403810012",
"imputation_code": "SIDEWAYS",
"percentile": 50.977749921654656,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "ea53b389-ecf9-4bc2-9217-1f4c06537971",
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"value": "4.853367372418893",
"imputation_code": "SIDEWAYS",
"percentile": 49.85584456283297,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "66290a94-2e41-4cd5-a073-8ea5cb440153",
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"value": "5.822673672262803",
"imputation_code": "SIDEWAYS",
"percentile": 39.138201190849266,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
"predictor_code": "8302-2",
"predictor_name": "Body height",
"value": "198.12",
"imputation_code": "GIVEN",
"percentile": 99.82283346345565,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1f796753-f375-494a-8539-b0f140ff4f56",
"predictor_code": "29463-7",
"predictor_name": "Body weight",
"value": "95.25431999999999",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "d331b0c0-e474-48d4-8ba3-64b50c012cc5",
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"value": "24.265285996055226",
"imputation_code": "SIDEWAYS",
"percentile": 21.274998498588673,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "7e3e3be0-21f5-4da5-ac53-875577558991",
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"value": "71.06679400032827",
"imputation_code": "SIDEWAYS",
"percentile": 37.71212019585485,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "36fbadf4-bd8c-45d7-9ff4-f59d3aae7b7d",
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"value": "103.15196343253379",
"imputation_code": "SIDEWAYS",
"percentile": 63.47274803196923,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "5e52a151-6581-470a-9fb6-2a7106472fe8",
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"value": "64.85154564239221",
"imputation_code": "SIDEWAYS",
"percentile": 43.75520933512855,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "71f8fba5-9b57-48d4-9b29-7856c42c3d0c",
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"value": "119.67778583214007",
"imputation_code": "SIDEWAYS",
"percentile": 48.024550576871476,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "1611d1d0-1628-414f-8437-c4464d2074eb",
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"value": "36.639910308793915",
"imputation_code": "SIDEWAYS",
"percentile": 51.70270270270271,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "aa653593-7071-4266-b010-953cefff9eb3",
"predictor_code": "46098-0",
"predictor_name": "Sex",
"value": "male",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "8835a752-bc03-473c-a4ba-37387c045f14",
"predictor_code": "64219-9",
"predictor_name": "On the average of the entire time you smoked, how many cigarettes did you smoke per day [PhenX]",
"value": "0.0",
"imputation_code": "GIVEN",
"percentile": 100.0,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "efb49768-5b1c-4b7a-91fb-7ad99667ef6a",
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"value": "0",
"imputation_code": "SIDEWAYS",
"percentile": 37.142725428729484,
"health_event_id": null,
"health_event_date": null
},
{
"predictor_id": "42acd6e7-5685-414b-8698-8b3efe40eb1c",
"predictor_code": "63632-4",
"predictor_name": "About how long has it been since you completely quit smoking cigarettes [TUS-CPS]",
"value": null,
"imputation_code": "SIDEWAYS",
"percentile": null,
"health_event_id": null,
"health_event_date": null
}
],
"disease_scores": [
{
"disease_code": "ARD",
"disease_concept_code": "2000000201",
"disease_name": "Kidney Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 60.784789644012946,
"health_score": {
"health_score": 216.94322311953522,
"max_score": 245.0
},
"risk_ratios": {
"your_risk_frac": 0.0009500818099834876,
"peer_risk_frac": 0.0017091568597113092,
"risk_ratio": 0.5558774811013919
},
"disease_age": {
"disease_age": 21.369057441744935,
"disease_age_delta": -6.6309425582550645
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.012408412428754349,
"risk_attribution": -0.00032525425324991797,
"age_attribution": -0.004833526741163825,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.5106164477602144,
"risk_attribution": -0.013384481888151318,
"age_attribution": -0.19890362839711337,
"multiplier": 0.9917458809375196
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.1774323856782838,
"risk_attribution": -0.004650928427588949,
"age_attribution": -0.06911635036703667,
"multiplier": 0.9995022743075959
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.08413788863575156,
"risk_attribution": -0.002205455878854388,
"age_attribution": -0.03277475962384618,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.492193028806578,
"risk_attribution": -0.012901559885962765,
"age_attribution": -0.19172703842741606,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.28966311011823254,
"risk_attribution": -0.00759276491787374,
"age_attribution": -0.11283428857028338,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": -0.022814456224488713,
"risk_attribution": 0.0005980216216381793,
"age_attribution": 0.008887058266264267,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.15076116513886448,
"risk_attribution": -0.003951811762211994,
"age_attribution": -0.05872694250064271,
"multiplier": 0.9723412662047638
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": -0.025683416816128537,
"risk_attribution": 0.0006732239603898201,
"age_attribution": 0.010004622484786006,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.0497563916894221,
"risk_attribution": -0.0013042343745643882,
"age_attribution": -0.01938191941600271,
"multiplier": 0.9991380400368032
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.004014379364161561,
"risk_attribution": -0.00010522651224313994,
"age_attribution": -0.0015637463791005717,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": -0.013976704080889437,
"risk_attribution": 0.0003663629392419488,
"age_attribution": 0.005444433227554678,
"multiplier": 0.9949059870060811
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.15386090683650902,
"risk_attribution": -0.004033063427316119,
"age_attribution": -0.05993440433125898,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.0040115593414805925,
"risk_attribution": -0.0001051525926844121,
"age_attribution": -0.0015626478779734196,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": -0.0075479029840776896,
"risk_attribution": 0.00019784864202289135,
"age_attribution": 0.0029401820033565862,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.1433290245391715,
"risk_attribution": -0.003756997529957772,
"age_attribution": -0.055831854145144556,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.033735484358238726,
"risk_attribution": -0.0008842879647952467,
"age_attribution": -0.013141194871456268,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.22518028531370052,
"risk_attribution": -0.005902515407739685,
"age_attribution": -0.08771588927238251,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.11734193952890923,
"risk_attribution": -0.0030758136978046753,
"age_attribution": -0.04570894188354672,
"multiplier": 0.9966829680266313
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.15253682477969635,
"risk_attribution": -0.003998356060591893,
"age_attribution": -0.059418626340654125,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.03970346896061316,
"risk_attribution": -0.00104072315635562,
"age_attribution": -0.015465941355509634,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.01480839629482843,
"risk_attribution": -0.0003881635871114247,
"age_attribution": -0.0057684075135137946,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.010601679684735804,
"risk_attribution": -0.00027789545430186274,
"age_attribution": -0.0041297388003219354,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.06635916875831593,
"risk_attribution": -0.00173943298586329,
"age_attribution": -0.02584930333000886,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.4191847441125481,
"risk_attribution": -0.010987837622493645,
"age_attribution": -0.16328766325180216,
"multiplier": 0.9639535462770482
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.06383328956102634,
"risk_attribution": -0.0016732236333912428,
"age_attribution": -0.02486538175944947,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": 0.10536673785601113,
"risk_attribution": -0.002761914937588607,
"age_attribution": -0.041044166445985485,
"multiplier": 0.9288430581582298
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.26553970246458375,
"risk_attribution": -0.006960432539555253,
"age_attribution": -0.10343734624173015,
"multiplier": 0.9481461960041457
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -2.3070509950840097,
"risk_attribution": 0.06047334039902299,
"age_attribution": 0.8986800480717587,
"multiplier": 0.9096540828383998
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.2398406743448787,
"risk_attribution": -0.03249919802378788,
"age_attribution": -0.4829629163793168,
"multiplier": 0.9053832223743158
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.9075047799287023,
"risk_attribution": -0.023787877072205976,
"age_attribution": -0.35350603042130835,
"multiplier": 0.8783383928080901
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 4.672154865417728,
"risk_attribution": -0.12246838590712181,
"age_attribution": -1.819973796851167,
"multiplier": 1.6368696836182854
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7152709936415135,
"risk_attribution": 0.018748968431213875,
"age_attribution": 0.2786239976141849,
"multiplier": 0.9178250721906006
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.2071098508999319,
"risk_attribution": 0.005428845977028958,
"age_attribution": 0.0806767995850512,
"multiplier": 1.0830747830280631
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.36444206602621415,
"risk_attribution": 0.00955290072108871,
"age_attribution": 0.1419634044126896,
"multiplier": 0.9588487497730042
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4442925148134048,
"risk_attribution": -0.011645972517426143,
"age_attribution": -0.17306805069382272,
"multiplier": 0.8474966219628978
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 7.410650767565483,
"risk_attribution": -0.19425093220748238,
"age_attribution": -2.8867172863668134,
"multiplier": 0.7089714114984652
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.2935047127873502,
"risk_attribution": -0.03390586119284352,
"age_attribution": -0.5038670059507955,
"multiplier": 0.9330907638200518
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.10971363846586284,
"risk_attribution": -0.0028758576292848134,
"age_attribution": -0.042737441912088676,
"multiplier": 0.8534716945021091
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.6522929189640355,
"risk_attribution": -0.017098162031285336,
"age_attribution": -0.25409175307376397,
"multiplier": 0.8614098951204885
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -4.870189658783915,
"risk_attribution": 0.12765935285826516,
"age_attribution": 1.8971155323400797,
"multiplier": 1.2464652891154258
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.688408647262951,
"risk_attribution": -0.04425724055348346,
"age_attribution": -0.6576964130919826,
"multiplier": 0.7748925404281668
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.3467801554375052,
"risk_attribution": 0.035302338334075534,
"age_attribution": 0.5246197233653237,
"multiplier": 0.9716416560168324
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": -1.9596316277890766,
"risk_attribution": 0.051366645443251265,
"age_attribution": 0.7633476022927259,
"multiplier": 1.2479196626542408
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.098333162851595,
"risk_attribution": 0.028789946719942974,
"age_attribution": 0.4278406076387295,
"multiplier": 0.8847555147096
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.3949235840169788,
"risk_attribution": 0.010351894422251927,
"age_attribution": 0.1538370613503175,
"multiplier": 0.8455771527026062
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -1.3499252665700279,
"risk_attribution": 0.03538477924089341,
"age_attribution": 0.5258448582365465,
"multiplier": 0.8847700295253985
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 1.448705433295021,
"risk_attribution": -0.03797404435023066,
"age_attribution": -0.5643233163070935,
"multiplier": 0.8208552360284789
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.7863101345866057,
"risk_attribution": -0.020611074713728156,
"age_attribution": -0.30629631987127814,
"multiplier": 0.8676460637472703
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.579534398648627,
"risk_attribution": -0.0414033853456136,
"age_attribution": -0.615285943974921,
"multiplier": 0.8680939230669155
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.3122375920270082,
"risk_attribution": -0.008184496237081647,
"age_attribution": -0.12162786813579915,
"multiplier": 0.8839446295709611
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.48145067376971784,
"risk_attribution": -0.01261997699325018,
"age_attribution": -0.1875425014746133,
"multiplier": 0.873830299734398
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.3958059594798576,
"risk_attribution": 0.010375023599647709,
"age_attribution": 0.15418077860021226,
"multiplier": 0.9059632242745151
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.27900846594338563,
"risk_attribution": 0.007313481137242554,
"age_attribution": 0.1086839181798402,
"multiplier": 0.9685484437474998
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.5926354260513237,
"risk_attribution": -0.015534396044339151,
"age_attribution": -0.23085299558080957,
"multiplier": 0.9277909284818165
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.7298443338283661,
"risk_attribution": -0.019130970633916913,
"age_attribution": -0.28430084224726604,
"multiplier": 0.8809257898325706
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.764802396506003,
"risk_attribution": 0.02004730530900636,
"age_attribution": 0.29791827572167867,
"multiplier": 0.8610174363693966
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.3199938180929736,
"risk_attribution": -0.034600204181111184,
"age_attribution": -0.5141854733276158,
"multiplier": 0.8736330410690735
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -3.2187855226677202,
"risk_attribution": 0.08437208930296927,
"age_attribution": 1.2538337186336768,
"multiplier": 0.9848928395741899
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 2.933940616553433,
"risk_attribution": -0.07690562106924491,
"age_attribution": -1.1428762952974578,
"multiplier": 0.7178719449020983
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": -0.5646679832378719,
"risk_attribution": 0.014801302283970617,
"age_attribution": 0.21995866211978343,
"multiplier": 0.956650445501429
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.2242451931631746,
"risk_attribution": -0.03209040305384687,
"age_attribution": -0.4768879107518119,
"multiplier": 0.902737453911845
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.6859180746739306,
"risk_attribution": -0.04419195667190251,
"age_attribution": -0.6567262447260489,
"multiplier": 0.8982738746976385
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.9769895142058114,
"risk_attribution": -0.051821637281803425,
"age_attribution": -0.7701091286883956,
"multiplier": 0.9399970806466673
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -0.010088697640359282,
"risk_attribution": 0.00026444896445214925,
"age_attribution": 0.00392991368623361,
"multiplier": 0.8880480396413437
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.4719254830226969,
"risk_attribution": -0.038582697550465984,
"age_attribution": -0.5733683679552632,
"multiplier": 0.8759052609286554
}
]
},
{
"disease_code": "COPD",
"disease_concept_code": "2000000203",
"disease_name": "Respiratory Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 69.65219817264548,
"health_score": {
"health_score": 223.40020382837685,
"max_score": 255.0
},
"risk_ratios": {
"your_risk_frac": 0.000257528058673519,
"peer_risk_frac": 0.0005794723483791671,
"risk_ratio": 0.4444182011339223
},
"disease_age": {
"disease_age": 20.48610097779799,
"disease_age_delta": -7.513899022202011
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.3290343655583445,
"risk_attribution": -0.0078121330073193575,
"age_attribution": -0.10545881393968863,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.025254072725225746,
"risk_attribution": -0.0005995974759998021,
"age_attribution": -0.008094183573286043,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 6.1764798415999556,
"risk_attribution": -0.1466457218160991,
"age_attribution": -1.9796237311328109,
"multiplier": 0.7663861744296908
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.03430722922193046,
"risk_attribution": -0.0008145429956518936,
"age_attribution": -0.010995811021631016,
"multiplier": 1.0074344868021488
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.0984216151947554,
"risk_attribution": 0.0023367855433334495,
"age_attribution": 0.031545114708168225,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 1.4467265643112253,
"risk_attribution": -0.034349057510885975,
"age_attribution": -0.4636903726101786,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": -0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.09388639347084676,
"risk_attribution": -0.0022291075648805396,
"age_attribution": -0.030091530663397377,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.054830107309408446,
"risk_attribution": -0.0013018095856942903,
"age_attribution": -0.017573599265912374,
"multiplier": 1.0046450522216923
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": -0.01946826969486643,
"risk_attribution": 0.0004622274394365434,
"age_attribution": 0.006239775678126057,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.04986401754864441,
"risk_attribution": -0.0011839016775900952,
"age_attribution": -0.015981917694294464,
"multiplier": 1.0038555378938525
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": -0.027547391949231288,
"risk_attribution": 0.0006540468487143274,
"age_attribution": 0.008829215383529659,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.010113554292227942,
"risk_attribution": -0.00024012212576506834,
"age_attribution": -0.0032414955761934914,
"multiplier": 0.9985330573494733
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.043345132575738604,
"risk_attribution": 0.0010291263659555861,
"age_attribution": 0.013892549684708834,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.10374082657383495,
"risk_attribution": -0.0024630774785752343,
"age_attribution": -0.03324997529979771,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": -0.0016481549788000373,
"risk_attribution": 3.9131492812954814e-05,
"age_attribution": 0.0005282501995136552,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.10853428762235957,
"risk_attribution": -0.0025768867313350004,
"age_attribution": -0.03478632763790589,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.08107570818683306,
"risk_attribution": -0.001924948523061919,
"age_attribution": -0.02598557755569031,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.012848383382185148,
"risk_attribution": -0.00030505409287670255,
"age_attribution": -0.0041180357262329366,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.46144359741351615,
"risk_attribution": -0.010955873111470175,
"age_attribution": -0.14789730063823253,
"multiplier": 0.9916415579961531
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.07134340012772179,
"risk_attribution": -0.0016938781760573853,
"age_attribution": -0.022866275220604727,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.11564187648399858,
"risk_attribution": 0.002745639406923288,
"age_attribution": 0.03706438114774959,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.0029716911185333652,
"risk_attribution": -7.055568872041042e-05,
"age_attribution": -0.0009524568056100655,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.01597591027271831,
"risk_attribution": -0.00037930972879288643,
"age_attribution": -0.005120439459595021,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.20759352286677416,
"risk_attribution": -0.0049288110357143325,
"age_attribution": -0.06653580596647322,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": -0.5060602953773792,
"risk_attribution": 0.01201518975230077,
"age_attribution": 0.1621973997819493,
"multiplier": 0.9759590159831211
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.19492463418777647,
"risk_attribution": -0.004628018614693791,
"age_attribution": -0.06247530009270566,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -2.1054063410398065,
"risk_attribution": 0.049987831340188776,
"age_attribution": 0.6748038467361438,
"multiplier": 1.1210918709526037
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": -0.49171310568568594,
"risk_attribution": 0.01167455009308902,
"age_attribution": 0.15759898160247984,
"multiplier": 0.9926277168251958
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -4.428310815893396,
"risk_attribution": 0.10513963498252217,
"age_attribution": 1.419318026577387,
"multiplier": 0.9710467144135957
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.0328698056709513,
"risk_attribution": -0.024523019920588772,
"age_attribution": -0.33104513103164157,
"multiplier": 0.9406815912349639
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4305678356232448,
"risk_attribution": -0.01022280209197772,
"age_attribution": -0.13800130934151492,
"multiplier": 0.8837073829172051
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 3.1355233111545315,
"risk_attribution": -0.07444549177324797,
"age_attribution": -1.004966666364726,
"multiplier": 1.3669494153092756
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": 1.1134535241628711,
"risk_attribution": -0.026436287326608795,
"age_attribution": -0.3568730209561081,
"multiplier": 0.8958251058005836
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.9611492141118791,
"risk_attribution": 0.022820186237327955,
"age_attribution": 0.30805796217455905,
"multiplier": 1.1396024451603952
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.39949327464697054,
"risk_attribution": 0.009485011061916866,
"age_attribution": 0.12804160091199118,
"multiplier": 0.9170822786587032
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -2.4999998267328403,
"risk_attribution": 0.05935650864787607,
"age_attribution": 0.8012750161500143,
"multiplier": 1.0096727032407053
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 5.173071034502558,
"risk_attribution": -0.12282218275063166,
"age_attribution": -1.6580211455987306,
"multiplier": 0.841845008124314
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.8195316084354407,
"risk_attribution": -0.043200420454558505,
"age_attribution": -0.5831781279920752,
"multiplier": 0.9523699807279381
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.5014746174636792,
"risk_attribution": -0.01190631381245856,
"age_attribution": -0.16072764402234177,
"multiplier": 1.0798700224949715
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.0109356748761023,
"risk_attribution": -0.024002246514812357,
"age_attribution": -0.32401502214165506,
"multiplier": 0.8506699402948
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -4.962181902326572,
"risk_attribution": 0.11781512536450936,
"age_attribution": 1.5904290637980636,
"multiplier": 1.1776282785975931
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.06031347398277825,
"risk_attribution": -0.0014319989952642498,
"age_attribution": -0.019331073275621714,
"multiplier": 0.8053891257668903
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.8972337454767514,
"risk_attribution": 0.02130266650544382,
"age_attribution": 0.28757241348963086,
"multiplier": 0.9718431748860948
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 1.4469511309953476,
"risk_attribution": -0.03435438930898676,
"age_attribution": -0.4637623484845458,
"multiplier": 1.2148940809380033
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -2.4881613580201907,
"risk_attribution": 0.05907543256018757,
"age_attribution": 0.797480668203472,
"multiplier": 0.9445852396732775
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.19720585826709258,
"risk_attribution": 0.00468218081716427,
"age_attribution": 0.063206455287778,
"multiplier": 0.9168939793103758
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7177651283584806,
"risk_attribution": 0.017041614000522433,
"age_attribution": 0.23005092187105136,
"multiplier": 1.012853555103547
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": -0.33829912200649553,
"risk_attribution": 0.008032102461058805,
"age_attribution": 0.10842826129453889,
"multiplier": 0.8708955910430094
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.573860915438744,
"risk_attribution": -0.013624953100269928,
"age_attribution": -0.183928178461902,
"multiplier": 0.9099313095218353
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.7024657607343254,
"risk_attribution": -0.04042097226134679,
"age_attribution": -0.5456573497886973,
"multiplier": 0.9288833144417518
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 1.0662124740312944,
"risk_attribution": -0.025314661728604568,
"age_attribution": -0.34173179062386777,
"multiplier": 0.9295555887537384
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5786478545457753,
"risk_attribution": -0.013738607505148303,
"age_attribution": -0.18546244045235516,
"multiplier": 0.9376696464404627
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.03715295355220503,
"risk_attribution": -0.0008821079046623711,
"age_attribution": -0.01190789420832434,
"multiplier": 0.9114072684158866
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.899565035763283,
"risk_attribution": 0.021358017410101307,
"age_attribution": 0.2883196154062135,
"multiplier": 0.9683073398434995
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 2.160779848606654,
"risk_attribution": -0.051302542663609244,
"age_attribution": -0.6925516112341497,
"multiplier": 0.9242855593886673
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.5860152659499346,
"risk_attribution": -0.013913529044760942,
"age_attribution": -0.18782376969275208,
"multiplier": 0.933088784845221
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -2.8876527343172036,
"risk_attribution": 0.06856039855033104,
"age_attribution": 0.9255216606752639,
"multiplier": 0.9588584606190752
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 2.9733092839185846,
"risk_attribution": -0.07059410818214573,
"age_attribution": -0.9529754438440806,
"multiplier": 0.8330132235688933
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 0.6436339271130864,
"risk_attribution": -0.015281546163417785,
"age_attribution": -0.20629112843428551,
"multiplier": 0.9238946283760828
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": -2.9361868390301127,
"risk_attribution": 0.06971272463263863,
"age_attribution": 0.9410773279684435,
"multiplier": 0.7579900757408803
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.20054263578040457,
"risk_attribution": -0.004761404607985,
"age_attribution": -0.06427592594424694,
"multiplier": 1.0297380423358515
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.935108778978727,
"risk_attribution": -0.04594452357388354,
"age_attribution": -0.6202217702369118,
"multiplier": 0.921513081697385
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 2.9937969731979828,
"risk_attribution": -0.07108053929821379,
"age_attribution": -0.9595419537224753,
"multiplier": 0.9204160381124332
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.7509519924350079,
"risk_attribution": -0.01782955660895398,
"age_attribution": -0.24068764462780454,
"multiplier": 1.0095944310679474
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.4746664715326516,
"risk_attribution": -0.01126981859002965,
"age_attribution": -0.1521353644013034,
"multiplier": 0.8273949550061263
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 9.600189079818204,
"risk_attribution": -0.22793349825234588,
"age_attribution": -3.0769568772440428,
"multiplier": 0.5677330809335879
}
]
},
{
"disease_code": "Dementia",
"disease_concept_code": "2000000204",
"disease_name": "Brain Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 63.56725699288298,
"health_score": {
"health_score": 212.27837905911346,
"max_score": 235.0
},
"risk_ratios": {
"your_risk_frac": 8.88878904608664e-06,
"peer_risk_frac": 1.3603498690245142e-05,
"risk_ratio": 0.6534193333999181
},
"disease_age": {
"disease_age": 25.749546023435627,
"disease_age_delta": -2.2504539765643727
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.0789268996309855,
"risk_attribution": -0.0022278622736020843,
"age_attribution": -0.01478467705527687,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.005379876669218353,
"risk_attribution": 0.00015185727963496794,
"age_attribution": 0.0010077646470783943,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.0720354356751369,
"risk_attribution": -0.0020333375598618245,
"age_attribution": -0.013493760149866047,
"multiplier": 0.9636871991780269
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.24172492268625762,
"risk_attribution": -0.00682314696712951,
"age_attribution": -0.04528018881822464,
"multiplier": 0.9414363684664054
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.007956112785187427,
"risk_attribution": 0.0002245764574753886,
"age_attribution": 0.0014903481410560356,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.8038471133050563,
"risk_attribution": -0.022690117891989395,
"age_attribution": -0.15057756009164322,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.38666440062040613,
"risk_attribution": -0.010914340164312992,
"age_attribution": -0.07243041749609799,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.007066630290978221,
"risk_attribution": -0.00019946911763126505,
"age_attribution": -0.0013237292635289806,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.02504551827676063,
"risk_attribution": -0.0007069575208513711,
"age_attribution": -0.004691555111567694,
"multiplier": 0.9399213718328696
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.013791784572321783,
"risk_attribution": -0.00038929942361831123,
"age_attribution": -0.0025834928506133356,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.03332075694955536,
"risk_attribution": -0.000940541915149999,
"age_attribution": -0.006241682278663164,
"multiplier": 0.9721945533429268
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.001985174869574474,
"risk_attribution": -5.603534687293894e-05,
"age_attribution": -0.00037186522569787535,
"multiplier": 0.972895756597181
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.04701517538578949,
"risk_attribution": -0.0013270929938779083,
"age_attribution": -0.008806936393371422,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.09730213936152404,
"risk_attribution": -0.002746538460750699,
"age_attribution": -0.018226747965188184,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.05440825077838484,
"risk_attribution": -0.0015357766471072432,
"age_attribution": -0.010191815726474294,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.07844982854827295,
"risk_attribution": -0.0022143960324096518,
"age_attribution": -0.01469531155475305,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.0325883989758097,
"risk_attribution": -0.000919869714568094,
"age_attribution": -0.006104496145908549,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.021777380045226148,
"risk_attribution": -0.0006147080861846898,
"age_attribution": -0.004079363722432324,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.07705983706270349,
"risk_attribution": -0.0021751608717001003,
"age_attribution": -0.014434936760863878,
"multiplier": 0.9414624770369378
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": -0.2847225706288544,
"risk_attribution": 0.008036837586586316,
"age_attribution": 0.05333455737875298,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.002836428303168323,
"risk_attribution": 8.006359856969568e-05,
"age_attribution": 0.000531322991893214,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.008512039015160537,
"risk_attribution": -0.0002402685355939201,
"age_attribution": -0.001594484877899088,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.04105037464221081,
"risk_attribution": -0.0011587251166611068,
"age_attribution": -0.007689603100093741,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.4366035599391043,
"risk_attribution": -0.01232396818139848,
"age_attribution": -0.08178507790200494,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.4773410504025462,
"risk_attribution": -0.013473861545372667,
"age_attribution": -0.08941607118009337,
"multiplier": 0.9396388470213138
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.3782307547447611,
"risk_attribution": -0.010676284424595412,
"age_attribution": -0.07085061731069923,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.9042003849184136,
"risk_attribution": 0.025522780379750042,
"age_attribution": 0.16937584963780325,
"multiplier": 0.8899802428685344
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": -0.17843940180372872,
"risk_attribution": 0.005036792440363178,
"age_attribution": 0.03342547270879007,
"multiplier": 0.933996565623889
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -7.430402769365709,
"risk_attribution": 0.20973728963046084,
"age_attribution": 1.391871539986085,
"multiplier": 0.9675996017010635
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.9768335226747055,
"risk_attribution": -0.02757298922080603,
"age_attribution": -0.18298157202470702,
"multiplier": 0.9839710164507038
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.5590267324662604,
"risk_attribution": -0.015779595714762985,
"age_attribution": -0.10471752651406056,
"multiplier": 0.9972282578373897
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 21.64798958494048,
"risk_attribution": -0.6110557936661416,
"age_attribution": -4.055126153513473,
"multiplier": 1.2533634681719592
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5221950646378093,
"risk_attribution": 0.01473995164395198,
"age_attribution": 0.09781817639646012,
"multiplier": 0.9868381782829923
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 2.5616417188865963,
"risk_attribution": -0.07230722314793889,
"age_attribution": -0.47984965483420916,
"multiplier": 0.8838116190436748
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.0051818758200633235,
"risk_attribution": 0.00014626832803499288,
"age_attribution": 0.000970674901692292,
"multiplier": 0.9782317989827205
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.8994472816760731,
"risk_attribution": 0.025388614975487934,
"age_attribution": 0.1684854929054731,
"multiplier": 0.9986913058221674
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 2.590383523455293,
"risk_attribution": -0.07311851539903734,
"age_attribution": -0.4852336025189759,
"multiplier": 0.9333225259573602
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.018022595041928,
"risk_attribution": -0.028735629345283644,
"age_attribution": -0.19069715614118665,
"multiplier": 0.9642051494920603
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 2.841284034293903,
"risk_attribution": -0.08020066084169687,
"age_attribution": -0.5322325729979399,
"multiplier": 0.9957003342187742
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": -0.4790790500224026,
"risk_attribution": 0.013522919899402998,
"age_attribution": 0.08974163525548352,
"multiplier": 0.9760901628991208
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -11.306704135021802,
"risk_attribution": 0.3191532886629015,
"age_attribution": 2.1179847425583427,
"multiplier": 1.1093155190101196
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.1670455776128992,
"risk_attribution": -0.03294208724901193,
"age_attribution": -0.2186123115752283,
"multiplier": 0.7145888653027611
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.882879074737124,
"risk_attribution": 0.02492094573530374,
"age_attribution": 0.16538191744358843,
"multiplier": 0.9585974384868644
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 0.7102300078548353,
"risk_attribution": -0.020047596541581558,
"age_attribution": -0.13304109689085203,
"multiplier": 1.0120971268699015
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.8365595944565938,
"risk_attribution": 0.05184039728966486,
"age_attribution": 0.3440264424899718,
"multiplier": 1.043947368346181
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": 0.909043010182199,
"risk_attribution": -0.025659472713806242,
"age_attribution": -0.17028297573751738,
"multiplier": 0.9635803649172582
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -12.240323746653532,
"risk_attribution": 0.3455064828257797,
"age_attribution": 2.292871435371362,
"multiplier": 1.4463885404199384
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": -0.8621147836517556,
"risk_attribution": 0.0243348340172017,
"age_attribution": 0.16149232670311528,
"multiplier": 0.9936639047063435
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.9420347260116848,
"risk_attribution": -0.026590726815786156,
"age_attribution": -0.1764630216574628,
"multiplier": 0.9105354792177477
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.7865223640378434,
"risk_attribution": -0.05042800102873651,
"age_attribution": -0.3346534112935039,
"multiplier": 0.8850166005664024
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.43630026523277277,
"risk_attribution": 0.012315407109860413,
"age_attribution": 0.08172826439093776,
"multiplier": 0.9012761906404292
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5382241297303151,
"risk_attribution": -0.015192402577254394,
"age_attribution": -0.10082075919140968,
"multiplier": 0.9076136611356944
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.13233974286745154,
"risk_attribution": -0.0037355416443704847,
"age_attribution": -0.02479003190321085,
"multiplier": 0.9837347136457428
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.06267858173284115,
"risk_attribution": 0.0017692225116956368,
"age_attribution": 0.01174102357416091,
"multiplier": 0.9969201019631526
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.015858752538348266,
"risk_attribution": -0.0004476435366366137,
"age_attribution": -0.0029706796526311717,
"multiplier": 0.9572848675620098
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.40979038030815673,
"risk_attribution": -0.011567115047493644,
"age_attribution": -0.07676240244506786,
"multiplier": 0.9716952407225493
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.23345919658458344,
"risk_attribution": -0.006589831083293392,
"age_attribution": -0.0437318435568247,
"multiplier": 0.9391566318070895
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.5347269971152048,
"risk_attribution": -0.015093689339367004,
"age_attribution": -0.10016567231259373,
"multiplier": 0.9498483528569688
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 4.113756444361848,
"risk_attribution": -0.11611862150965854,
"age_attribution": -0.7705935593354633,
"multiplier": 0.807609150339997
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 0.4675187631999208,
"risk_attribution": -0.013196608755746773,
"age_attribution": -0.08757614911405563,
"multiplier": 0.931706012981251
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.34427214373425147,
"risk_attribution": -0.009717737862042462,
"age_attribution": -0.06448945148024704,
"multiplier": 0.9977581724023997
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 3.44477225323806,
"risk_attribution": -0.09723526681044792,
"age_attribution": -0.6452786759801833,
"multiplier": 0.8907959037760939
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": -0.6540917028354125,
"risk_attribution": 0.018462985813914787,
"age_attribution": 0.12252520542642978,
"multiplier": 0.9860999863147581
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.2060613260779348,
"risk_attribution": -0.005816473934283641,
"age_attribution": -0.03859964313672773,
"multiplier": 1.006334289868375
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.03782520253916592,
"risk_attribution": -0.0010676884829172065,
"age_attribution": -0.007085460175258934,
"multiplier": 0.9213552696634514
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 0.8435071821464311,
"risk_attribution": -0.02380959897579308,
"age_attribution": -0.1580067295199528,
"multiplier": 0.9569669802442929
}
]
},
{
"disease_code": "Liver",
"disease_concept_code": "2000000205",
"disease_name": "Liver Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 69.95880463622399,
"health_score": {
"health_score": 223.6978855733388,
"max_score": 250.0
},
"risk_ratios": {
"your_risk_frac": 0.004499493314542621,
"peer_risk_frac": 0.01022945109568367,
"risk_ratio": 0.43985676967957626
},
"disease_age": {
"disease_age": 22.242942564386,
"disease_age_delta": -5.757057435614001
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.19872750188619573,
"risk_attribution": -0.004697291010016403,
"age_attribution": -0.048459915431646676,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.007517778082763036,
"risk_attribution": -0.00017769654963852857,
"age_attribution": -0.0018332182846700889,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.8315689140242306,
"risk_attribution": -0.01965566490284782,
"age_attribution": -0.20277897556563457,
"multiplier": 0.9843670852590591
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.010567254411438382,
"risk_attribution": -0.0002497765466595123,
"age_attribution": -0.0025768363727344304,
"multiplier": 0.9931824748353414
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.09796584431381078,
"risk_attribution": -0.0023156034037375233,
"age_attribution": -0.02388907667825369,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.21013628536764248,
"risk_attribution": -0.004966958648234453,
"age_attribution": -0.051241959574713926,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.17522068265147195,
"risk_attribution": -0.004141663984982991,
"age_attribution": -0.04272775223646867,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.018480578261859563,
"risk_attribution": -0.0004368225500014073,
"age_attribution": -0.004506508918984461,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.18657093882030798,
"risk_attribution": -0.004409948222228567,
"age_attribution": -0.045495524431302094,
"multiplier": 0.9928080916340138
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.027042717327799465,
"risk_attribution": -0.0006392044975387022,
"age_attribution": -0.006594395754532046,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.1009734558976881,
"risk_attribution": -0.0023866938503062044,
"age_attribution": -0.024622486003196546,
"multiplier": 1.002671134770033
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.007111130924176024,
"risk_attribution": -0.00016808469408683267,
"age_attribution": -0.0017340569369521924,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.047001131919933214,
"risk_attribution": -0.0011109584347038645,
"age_attribution": -0.011461276654783166,
"multiplier": 0.9962551891448772
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": 0.06314472590669809,
"risk_attribution": -0.0014925420513832075,
"age_attribution": -0.015397909440563726,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.006611485693893925,
"risk_attribution": -0.00015627465759905098,
"age_attribution": -0.0016122179092610883,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.025535427127118048,
"risk_attribution": -0.0006035769138276101,
"age_attribution": -0.006226841415234809,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.005445999889563488,
"risk_attribution": -0.00012872625116802652,
"age_attribution": -0.0013280129402529163,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": -0.0016253173537182175,
"risk_attribution": 3.841737314453989e-05,
"age_attribution": 0.00039335914662936487,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.0336325664409652,
"risk_attribution": -0.0007949677346490065,
"age_attribution": -0.008201337560272652,
"multiplier": 1.010897316552634
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.0034031257622688773,
"risk_attribution": -8.043915360147351e-05,
"age_attribution": -0.0008298558834461123,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.0034431144265857565,
"risk_attribution": -8.138435943164496e-05,
"age_attribution": -0.0008396071623210927,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": -0.00858675272917883,
"risk_attribution": 0.0002029637368616634,
"age_attribution": 0.0020781650538216944,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": -0.003050828501801605,
"risk_attribution": 7.211195812656642e-05,
"age_attribution": 0.0007383612149564732,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.010603852638192513,
"risk_attribution": -0.00025064161324507816,
"age_attribution": -0.0025857608897570873,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.38282381589710646,
"risk_attribution": -0.009048746911051288,
"age_attribution": -0.09335199993716979,
"multiplier": 0.9793810079718803
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.05292637295873196,
"risk_attribution": -0.0012510124342739307,
"age_attribution": -0.012906153065581821,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.06103309142150628,
"risk_attribution": 0.0014426296759465543,
"age_attribution": 0.014771222803222458,
"multiplier": 0.940930302789567
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.8435539914195711,
"risk_attribution": -0.01993895431055005,
"age_attribution": -0.20570154960046816,
"multiplier": 0.9259444110423336
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": 2.3532154609164047,
"risk_attribution": -0.05562258733330388,
"age_attribution": -0.5738341253530033,
"multiplier": 0.7022866723781529
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 2.272122121855783,
"risk_attribution": -0.0537057967083213,
"age_attribution": -0.5540594272581315,
"multiplier": 0.7275425429858957
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.06376513319189793,
"risk_attribution": -0.0015072065217542324,
"age_attribution": -0.015549196425448077,
"multiplier": 0.9547759779250896
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4492569222547988,
"risk_attribution": -0.010619015898985102,
"age_attribution": -0.10955178449340583,
"multiplier": 1.404153356080929
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0428720304312593,
"risk_attribution": 0.0246502037546248,
"age_attribution": 0.25239578658014733,
"multiplier": 0.9929337777852564
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.7872795713887195,
"risk_attribution": 0.018608804609095135,
"age_attribution": 0.19053732469645984,
"multiplier": 1.1667409986127293
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0213347331682974,
"risk_attribution": 0.02414113001368231,
"age_attribution": 0.24718333200770307,
"multiplier": 0.9711744292867663
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -1.582667560741018,
"risk_attribution": 0.03740926663069871,
"age_attribution": 0.3830370479136584,
"multiplier": 0.9386925149706511
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 1.551644744001294,
"risk_attribution": -0.036675985143266,
"age_attribution": -0.3783702424706264,
"multiplier": 0.826144089951089
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 4.313120350728789,
"risk_attribution": -0.10194855395605644,
"age_attribution": -1.0517590442138502,
"multiplier": 0.8149571133169068
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 0.469389053769498,
"risk_attribution": -0.011094875955992308,
"age_attribution": -0.1144610264523764,
"multiplier": 1.0242045854399373
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.4753496098788563,
"risk_attribution": -0.03487260894108059,
"age_attribution": -0.35976559181921963,
"multiplier": 0.780979847432794
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -3.670586149119443,
"risk_attribution": 0.0867610731081563,
"age_attribution": 0.8883549000102005,
"multiplier": 1.2211080888727988
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 1.045938015874159,
"risk_attribution": -0.02472267397500738,
"age_attribution": -0.2540954640381154,
"multiplier": 0.8340195718415666
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.7655922289432422,
"risk_attribution": 0.041733028522239035,
"age_attribution": 0.4273084581812445,
"multiplier": 0.943374610648246
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 0.007934278379908106,
"risk_attribution": -0.0001875413022916821,
"age_attribution": -0.0019347823308405294,
"multiplier": 1.3084992952295484
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": 1.2057490705227474,
"risk_attribution": -0.02850010298295587,
"age_attribution": -0.29402320984631514,
"multiplier": 0.8478906657573005
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.7612945196451201,
"risk_attribution": 0.017994599988237374,
"age_attribution": 0.1842484250205912,
"multiplier": 0.8525427076577197
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 2.5940576570382077,
"risk_attribution": -0.06131533681154878,
"age_attribution": -0.632563754345765,
"multiplier": 0.6040102609062489
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 1.069215900501298,
"risk_attribution": -0.025272889708378175,
"age_attribution": -0.2607294492442067,
"multiplier": 0.7961164595410484
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": -0.22994765381829413,
"risk_attribution": 0.005435236878656034,
"age_attribution": 0.05565190863708118,
"multiplier": 0.9186515196209466
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 0.8543961929311139,
"risk_attribution": -0.02019522973899136,
"age_attribution": -0.20834543211977405,
"multiplier": 0.8498087438160962
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.0294535564746246,
"risk_attribution": 0.0006961891269608668,
"age_attribution": 0.007128346850880163,
"multiplier": 0.9393368215240633
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.5981151517489337,
"risk_attribution": -0.014137554684674581,
"age_attribution": -0.14585102412618417,
"multiplier": 0.9299543139974223
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.6541703001544287,
"risk_attribution": -0.015462521496872793,
"age_attribution": -0.159520132455208,
"multiplier": 0.865582764276426
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.46985088436841826,
"risk_attribution": 0.011105792173928273,
"age_attribution": 0.11371326497893026,
"multiplier": 0.9860423528604816
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.8013836487038597,
"risk_attribution": -0.018942180487864654,
"age_attribution": -0.19541826609752744,
"multiplier": 0.9012393844374407
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 1.4160752101902845,
"risk_attribution": -0.03347154918770688,
"age_attribution": -0.3453114655965957,
"multiplier": 0.9356366906255845
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.11001010800794442,
"risk_attribution": 0.0026002917887659825,
"age_attribution": 0.026624635556627193,
"multiplier": 0.9208271628063133
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.09215642831350097,
"risk_attribution": -0.0021782871425623193,
"age_attribution": -0.022472444327873285,
"multiplier": 0.9128563443319991
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 1.0906177108564852,
"risk_attribution": -0.025778760966383856,
"age_attribution": -0.2659483037563035,
"multiplier": 0.8937808790134336
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 3.217606016200219,
"risk_attribution": -0.07605405225859105,
"age_attribution": -0.78461669349979,
"multiplier": 0.6140081898170111
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.06171192567212871,
"risk_attribution": -0.0014586751753991962,
"age_attribution": -0.015048519559753781,
"multiplier": 0.9249924509179095
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 2.0093577356084005,
"risk_attribution": -0.047494875836487774,
"age_attribution": -0.48998404858563777,
"multiplier": 0.903744941403726
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.082890348687649,
"risk_attribution": -0.025596110510345813,
"age_attribution": -0.2640639781664516,
"multiplier": 0.9296340710492724
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": -0.056692565621835736,
"risk_attribution": 0.0013400333436622961,
"age_attribution": 0.013720729174654979,
"multiplier": 0.9839984248441461
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 0.5813806875010127,
"risk_attribution": -0.013742004759661103,
"age_attribution": -0.1417703069906537,
"multiplier": 0.889745082990231
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.6650727734157102,
"risk_attribution": -0.03935706580797104,
"age_attribution": -0.40602978964366304,
"multiplier": 0.9352698239530806
}
]
},
{
"disease_code": "MACE3",
"disease_concept_code": "2000004701",
"disease_name": "Cardiovascular Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 90.62638464588046,
"health_score": {
"health_score": 227.7409537929391,
"max_score": 240.0
},
"risk_ratios": {
"your_risk_frac": 0.0011427730715538305,
"peer_risk_frac": 0.0029888420044625625,
"risk_ratio": 0.38234643043947647
},
"disease_age": {
"disease_age": 20.0,
"disease_age_delta": -8.0
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.10124577949191194,
"risk_attribution": -0.0022542417817672153,
"age_attribution": -0.029197490539833414,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.006501431265225126,
"risk_attribution": -0.000144754656173386,
"age_attribution": -0.0018748976877298088,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.3186229673704154,
"risk_attribution": -0.007094154534455636,
"age_attribution": -0.09188522348543454,
"multiplier": 0.93672182722712
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.4700353144873044,
"risk_attribution": -0.010465357174794816,
"age_attribution": -0.13554986407336644,
"multiplier": 0.9775387205647684
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.0017768059885657017,
"risk_attribution": -3.956066433207692e-05,
"age_attribution": -0.0005123993938573089,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 1.0286868833787848,
"risk_attribution": -0.022903759193770665,
"age_attribution": -0.2966550872207187,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.029414626871753332,
"risk_attribution": -0.0006549179750717022,
"age_attribution": -0.008482657688356836,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.005508645719813757,
"risk_attribution": -0.00012265024186563066,
"age_attribution": -0.0015885959108488533,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.07848836814590286,
"risk_attribution": -0.001747547006355514,
"age_attribution": -0.02263465596222736,
"multiplier": 0.9828577655568305
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.006525939352407167,
"risk_attribution": -0.00014530032982412188,
"age_attribution": -0.0018819653862278407,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.027582465982621884,
"risk_attribution": -0.0006141248314174542,
"age_attribution": -0.007954294921075838,
"multiplier": 0.9844358510979075
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": -0.00048540078720124986,
"risk_attribution": 1.0807470107918583e-05,
"age_attribution": 0.00013998099440252083,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.00848663211280116,
"risk_attribution": -0.00018895524130654786,
"age_attribution": -0.002447394469893464,
"multiplier": 0.9811279448461191
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.006513261180516502,
"risk_attribution": 0.00014501804976330569,
"age_attribution": 0.0018783092258851805,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.008351248952923064,
"risk_attribution": -0.00018594092923273687,
"age_attribution": -0.0024083523631544938,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.009581902967295414,
"risk_attribution": -0.00021334149557752284,
"age_attribution": -0.0027632511957059796,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": -0.0027549965246578922,
"risk_attribution": 6.134012010844774e-05,
"age_attribution": 0.00079449222841332,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.08605127388801574,
"risk_attribution": -0.001915935438949882,
"age_attribution": -0.024815664098735736,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.22734493145331836,
"risk_attribution": -0.005061845006546809,
"age_attribution": -0.06556225374231633,
"multiplier": 0.9814808856225005
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.0015815677619644111,
"risk_attribution": -3.5213676536522215e-05,
"age_attribution": -0.0004560961454373546,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.004168849381350604,
"risk_attribution": 9.281961682250341e-05,
"age_attribution": 0.0012022223640808481,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.010742173821008848,
"risk_attribution": -0.00023917497772100798,
"age_attribution": -0.003097852770655074,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.0028724119217764833,
"risk_attribution": -6.395437914557296e-05,
"age_attribution": -0.0008283527504400651,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.07269950964106288,
"risk_attribution": -0.001618657814373035,
"age_attribution": -0.020965251644539214,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.240193428615461,
"risk_attribution": -0.0053479173671051395,
"age_attribution": -0.06926753287815138,
"multiplier": 0.9787201566944507
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.24821788165541772,
"risk_attribution": -0.005526582170806359,
"age_attribution": -0.0715816430849891,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -2.3061472145645823,
"risk_attribution": 0.05134647026341338,
"age_attribution": 0.6650520329698437,
"multiplier": 1.0360204304230074
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.24914780337228007,
"risk_attribution": -0.005547286919176549,
"age_attribution": -0.07184981604653999,
"multiplier": 0.9882645141793811
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -1.7555575188557375,
"risk_attribution": 0.0390875662092792,
"age_attribution": 0.5062717113360619,
"multiplier": 0.9739584940509027
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.792206069493112,
"risk_attribution": -0.017638503358686834,
"age_attribution": -0.22845820670946124,
"multiplier": 0.9920927705484802
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 1.2132120947820404,
"risk_attribution": -0.02701222122964127,
"age_attribution": -0.34986889170071395,
"multiplier": 0.9470047993029092
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 7.130175563784442,
"risk_attribution": -0.15875367593473372,
"age_attribution": -2.0562164133229714,
"multiplier": 0.8082787461633085
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.41108933073392884,
"risk_attribution": 0.009152922225791874,
"age_attribution": 0.118550885828176,
"multiplier": 0.9626354830626176
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 0.11263345923473317,
"risk_attribution": -0.002507788977536521,
"age_attribution": -0.03248149579151145,
"multiplier": 1.0833308128868426
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": 0.16716745589316317,
"risk_attribution": -0.003721990837713885,
"age_attribution": -0.048208135060074896,
"multiplier": 0.9393840223884485
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5696108992220785,
"risk_attribution": 0.012682411996037625,
"age_attribution": 0.16426570001124075,
"multiplier": 0.9226683780549032
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 3.5753910186610853,
"risk_attribution": -0.07960623999210677,
"age_attribution": -1.0310794777564216,
"multiplier": 0.8913856849832998
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.2177592767313787,
"risk_attribution": -0.0048484199779853295,
"age_attribution": -0.062797920606985,
"multiplier": 1.004397631361433
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 7.811908524469356,
"risk_attribution": -0.17393249061417987,
"age_attribution": -2.2528161310611368,
"multiplier": 0.6321569861110302
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.208205144508601,
"risk_attribution": -0.0046356967992691785,
"age_attribution": -0.06004267800239668,
"multiplier": 0.9719017468370872
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": 2.08637074945048,
"risk_attribution": -0.04645313749640267,
"age_attribution": -0.6016723909418062,
"multiplier": 0.8892691859431683
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": -0.015274516038001002,
"risk_attribution": 0.0003400877786899348,
"age_attribution": 0.004404900033938649,
"multiplier": 0.7676900553231034
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -0.6969125849881844,
"risk_attribution": 0.015516789689443415,
"age_attribution": 0.20097725267559302,
"multiplier": 1.0402817372449003
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 2.248985483480527,
"risk_attribution": -0.0500737617794206,
"age_attribution": -0.6485676016094185,
"multiplier": 1.134002501631911
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.957737331058622,
"risk_attribution": 0.043589108716875775,
"age_attribution": 0.5645767901626868,
"multiplier": 0.9392060692124596
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -0.516968196773535,
"risk_attribution": 0.011510319885530184,
"age_attribution": 0.14908447651287854,
"multiplier": 0.9712156352705504
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 0.45877165228751415,
"risk_attribution": -0.010214571235134905,
"age_attribution": -0.13230162328572426,
"multiplier": 0.6621041115975498
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 0.3804598864176192,
"risk_attribution": -0.008470956286306432,
"age_attribution": -0.10971789629366167,
"multiplier": 0.9286967809937826
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.24182964444081612,
"risk_attribution": -0.005384347785202704,
"age_attribution": -0.06973938855768366,
"multiplier": 0.9734309408317565
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": -0.024521986631745117,
"risk_attribution": 0.0005459831226014996,
"age_attribution": 0.007071706853276741,
"multiplier": 0.9565685419756762
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.1936562875196359,
"risk_attribution": -0.004311765851568776,
"age_attribution": -0.05584704519249144,
"multiplier": 0.9718741161411547
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 1.4436417281967187,
"risk_attribution": -0.03214274726250338,
"age_attribution": -0.416320718882901,
"multiplier": 0.9601615885967577
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": 0.06398045918728891,
"risk_attribution": -0.0014245277683714256,
"age_attribution": -0.018450831839408155,
"multiplier": 0.9576610745836363
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.35388885536560805,
"risk_attribution": 0.007879351098587348,
"age_attribution": 0.10205528130202449,
"multiplier": 0.9980274136667276
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.5648784694250416,
"risk_attribution": -0.012577044236203122,
"age_attribution": -0.16290095103184804,
"multiplier": 0.9842652624417659
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 0.19819581663845617,
"risk_attribution": -0.004412838669226435,
"age_attribution": -0.0571561650310388,
"multiplier": 0.9960834825558003
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": -0.9322674189317208,
"risk_attribution": 0.0207569755310546,
"age_attribution": 0.26884942050377814,
"multiplier": 0.9733644862465585
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.0080991314042798,
"risk_attribution": -0.022445371980728396,
"age_attribution": -0.29071794399826895,
"multiplier": 0.9602483972541455
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": 3.1861045162834642,
"risk_attribution": -0.07093875870902022,
"age_attribution": -0.9188161416697712,
"multiplier": 0.8172926233952063
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": -2.0671743555744078,
"risk_attribution": 0.046025728933281676,
"age_attribution": 0.5961364907649466,
"multiplier": 0.8571046879022434
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 0.4346581609116799,
"risk_attribution": -0.00967768327756793,
"age_attribution": -0.12534771923301735,
"multiplier": 0.9278548247986482
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 0.985135130011616,
"risk_attribution": -0.021934077468742947,
"age_attribution": -0.2840955325082909,
"multiplier": 0.9569364101755402
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 0.44598165445815224,
"risk_attribution": -0.009929801364821814,
"age_attribution": -0.12861321432190057,
"multiplier": 0.9259796203850893
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.0558845112708664,
"risk_attribution": -0.023509315587992366,
"age_attribution": -0.30449840164893544,
"multiplier": 0.9452018398658103
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -1.1340789725820224,
"risk_attribution": 0.02525031874560517,
"age_attribution": 0.3270483000827978,
"multiplier": 1.0022960370299276
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 1.0158790829349151,
"risk_attribution": -0.022618592947454056,
"age_attribution": -0.29296154429801513,
"multiplier": 0.9190740117034101
}
]
},
{
"disease_code": "Mortality",
"disease_concept_code": "2000000202",
"disease_name": "Longevity Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 54.20428047006672,
"health_score": {
"health_score": 208.8093179148903,
"max_score": 225.0
},
"risk_ratios": {
"your_risk_frac": 0.001036037219426633,
"peer_risk_frac": 0.0014059465303574309,
"risk_ratio": 0.7368966010131576
},
"disease_age": {
"disease_age": 25.01443474910033,
"disease_age_delta": -2.9855652508996684
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.025085588625088483,
"risk_attribution": -0.0007492184635192198,
"age_attribution": -0.00854285957236935,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": 0.04947217869177015,
"risk_attribution": -0.0014775602940935804,
"age_attribution": -0.01684767623432495,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 0.010587925216227959,
"risk_attribution": -0.00031622415486894854,
"age_attribution": -0.0036057020481680964,
"multiplier": 1.0039710406209126
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": -0.12739536583173433,
"risk_attribution": 0.0038048523267444055,
"age_attribution": 0.04338430071290735,
"multiplier": 0.9978459191746544
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": 0.6326628833981982,
"risk_attribution": -0.01889541921895267,
"age_attribution": -0.21545239580767572,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.050874402230749634,
"risk_attribution": -0.0015194397883755684,
"age_attribution": -0.017325201356880465,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.4998398660582558,
"risk_attribution": -0.014928461996673524,
"age_attribution": -0.17021971651632006,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": 0.010678431290300055,
"risk_attribution": -0.00031892725355915175,
"age_attribution": -0.0036365237559143164,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.03874856654603105,
"risk_attribution": -0.0011572836470002197,
"age_attribution": -0.0131957662058721,
"multiplier": 0.9995360967321718
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.08317921410135871,
"risk_attribution": -0.0024842711054995775,
"age_attribution": -0.02832655657508796,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.029475423091105284,
"risk_attribution": -0.0008803274074984533,
"age_attribution": -0.010037811114053425,
"multiplier": 0.9916179822419859
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.0858887173979774,
"risk_attribution": -0.002565194456636839,
"age_attribution": -0.02924927385790012,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.0049137248673311144,
"risk_attribution": -0.0001467557110290855,
"age_attribution": -0.001673361631900749,
"multiplier": 0.9988265763723866
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.08368932491736697,
"risk_attribution": 0.0024995063247127323,
"age_attribution": 0.028500274048201067,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.008628228769250436,
"risk_attribution": -0.00025769490196155757,
"age_attribution": -0.0029383303631259207,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.025674840463928594,
"risk_attribution": -0.0007668173472416505,
"age_attribution": -0.008743528402078891,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.15015977194286964,
"risk_attribution": -0.004484745217615415,
"age_attribution": -0.051136685062434635,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": 0.12374378938603202,
"risk_attribution": -0.0036957925580078685,
"age_attribution": -0.04214076183249185,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.33486489220147087,
"risk_attribution": -0.010001238710053598,
"age_attribution": -0.1140377366681654,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.18006326883388868,
"risk_attribution": -0.005377857686666041,
"age_attribution": -0.06132027606684377,
"multiplier": 0.9920485510573975
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.30088454600364706,
"risk_attribution": -0.00898636506492322,
"age_attribution": -0.10246578074849522,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": 0.11003316636935156,
"risk_attribution": -0.0032863043827862136,
"age_attribution": -0.037471629733113694,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.059706030836340906,
"risk_attribution": -0.001783209529366852,
"age_attribution": -0.020332799229127733,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": 0.03260218395660563,
"risk_attribution": -0.0009737127773398169,
"age_attribution": -0.011102624835970036,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.04282950690442011,
"risk_attribution": -0.0012791670084282213,
"age_attribution": -0.0145855243226127,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.03152444443762581,
"risk_attribution": -0.0009415244815596475,
"age_attribution": -0.01073560225962796,
"multiplier": 0.9860347479925574
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": -0.04368958180836513,
"risk_attribution": 0.001304854426318853,
"age_attribution": 0.014878421540849509,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": -0.34563607564350063,
"risk_attribution": 0.010322936144757216,
"age_attribution": 0.11770584703020263,
"multiplier": 1.0010343319752453
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.4325495130611308,
"risk_attribution": -0.012918735390866437,
"age_attribution": -0.1473040877534899,
"multiplier": 0.9519663402092192
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": -1.9720425446242686,
"risk_attribution": 0.05889798750029193,
"age_attribution": 0.6715761300739109,
"multiplier": 0.9315665327246904
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 1.0769168654824746,
"risk_attribution": -0.03216372600831757,
"age_attribution": -0.366742422927718,
"multiplier": 0.9331111163275615
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": 0.7802194657835174,
"risk_attribution": -0.02330241630357803,
"age_attribution": -0.2657025685716439,
"multiplier": 0.9188682579103535
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 3.436375441508879,
"risk_attribution": -0.10263247025376036,
"age_attribution": -1.1702525012863052,
"multiplier": 1.2555102877055708
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -0.3456678783528228,
"risk_attribution": 0.010323885980033965,
"age_attribution": 0.11771667739515125,
"multiplier": 0.9599744349107925
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": -0.025206043682009505,
"risk_attribution": 0.0007528160331843474,
"age_attribution": 0.008583880361294706,
"multiplier": 1.0556179473606189
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5371028332782399,
"risk_attribution": 0.016041376007341873,
"age_attribution": 0.18290956410043285,
"multiplier": 0.954348462234309
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -0.5173885523553305,
"risk_attribution": 0.015452579647679161,
"age_attribution": 0.17619589530789675,
"multiplier": 0.9307265659474604
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 3.6099068449246,
"risk_attribution": -0.10781524405199734,
"age_attribution": -1.2293483603842277,
"multiplier": 0.854964755146972
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.49929588176390266,
"risk_attribution": -0.01491221509558282,
"age_attribution": -0.17003446348097426,
"multiplier": 0.956711053819577
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 1.293074057604392,
"risk_attribution": -0.0386195824676013,
"age_attribution": -0.44035443042147043,
"multiplier": 1.0528868082146048
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 0.4961287409493459,
"risk_attribution": -0.014817623718426215,
"age_attribution": -0.1689558984279853,
"multiplier": 0.8977440694876704
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -2.5283746590126577,
"risk_attribution": 0.07551367462559244,
"age_attribution": 0.8610341970082509,
"multiplier": 1.1105494560821605
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.6663323267139587,
"risk_attribution": -0.01990100728649169,
"age_attribution": -0.226918474217282,
"multiplier": 0.8411992300999819
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.0517677459791015,
"risk_attribution": 0.03141261010050371,
"age_attribution": 0.35817792801005915,
"multiplier": 0.974569934172851
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": -1.53027443242468,
"risk_attribution": 0.045703924917166294,
"age_attribution": 0.5211326622137471,
"multiplier": 1.1922854202475428
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": -1.2929300859605968,
"risk_attribution": 0.038615282540046605,
"age_attribution": 0.4403054010941651,
"multiplier": 0.9749501276967308
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": 0.29798309548423174,
"risk_attribution": -0.008899708924115773,
"age_attribution": -0.10147769612692277,
"multiplier": 0.9350733228183598
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": -1.1528572464518607,
"risk_attribution": 0.034431798581749044,
"age_attribution": 0.3926038057395558,
"multiplier": 0.9658046552012567
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 0.32416742535983706,
"risk_attribution": -0.009681742931404776,
"age_attribution": -0.1103947303838019,
"multiplier": 0.9072297067190582
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": 0.17662674359601002,
"risk_attribution": -0.00527522074252061,
"age_attribution": -0.06014997255262847,
"multiplier": 0.9202212128361462
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 0.9946613073321731,
"risk_attribution": -0.02970704126337002,
"age_attribution": -0.3387304160010754,
"multiplier": 0.899959449440469
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": 0.17745700303425702,
"risk_attribution": -0.0053000176771248715,
"age_attribution": -0.06043271615875157,
"multiplier": 0.9162881355339195
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 0.42664762632777753,
"risk_attribution": -0.012742466754068132,
"age_attribution": -0.14529420908057564,
"multiplier": 0.9179389734313906
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.6150193571051542,
"risk_attribution": 0.018368469030224988,
"age_attribution": 0.20944391939775256,
"multiplier": 0.9150325357642368
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.7675051224661851,
"risk_attribution": 0.022922683505307524,
"age_attribution": 0.2613727180292399,
"multiplier": 0.9939025531550033
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": 0.3045717712867123,
"risk_attribution": -0.00909648953927837,
"age_attribution": -0.10372145978699358,
"multiplier": 0.9029905271132879
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": 1.1758182415135157,
"risk_attribution": -0.03511756289440148,
"age_attribution": -0.4004231381612559,
"multiplier": 0.9254087230039726
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.41118364161277066,
"risk_attribution": -0.012280611820495838,
"age_attribution": -0.1400279722852609,
"multiplier": 0.9139144464705009
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.292327965822728,
"risk_attribution": -0.038597299325409305,
"age_attribution": -0.44010034998452663,
"multiplier": 0.9053945344637542
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -3.0988832026076714,
"risk_attribution": 0.09255276192168878,
"age_attribution": 1.0553200256411426,
"multiplier": 1.1013480268295177
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 0.6861882512621958,
"risk_attribution": -0.02049403404397051,
"age_attribution": -0.23368037953392684,
"multiplier": 0.8446431162475538
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": -0.5336433364718864,
"risk_attribution": 0.01593805298309306,
"age_attribution": 0.18173143765303587,
"multiplier": 0.9701181183050102
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 1.3236381837464808,
"risk_attribution": -0.03953242561309087,
"age_attribution": -0.45076299772624207,
"multiplier": 0.9212254239715811
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.1472501821890781,
"risk_attribution": -0.03426433525710479,
"age_attribution": -0.39069432841669577,
"multiplier": 0.9204819849101593
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 0.01730796466969315,
"risk_attribution": -0.0005169281411042314,
"age_attribution": -0.005894201402507337,
"multiplier": 0.9651753447174933
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": -0.32512726419664206,
"risk_attribution": 0.009710409947725769,
"age_attribution": 0.11072160205970631,
"multiplier": 0.9429063423572424
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": 2.4011007621248517,
"risk_attribution": -0.07171245014975859,
"age_attribution": -0.8176912623619682,
"multiplier": 0.8978602574558445
}
]
},
{
"disease_code": "T2D",
"disease_concept_code": "2000000207",
"disease_name": "Metabolic Health",
"age_to_score": 0.0,
"info_ratio": 0.0,
"score_percentile": 67.80497131931166,
"health_score": {
"health_score": 251.54276548522517,
"max_score": 275.0
},
"risk_ratios": {
"your_risk_frac": 0.0006440175990631461,
"peer_risk_frac": 0.003843205958119163,
"risk_ratio": 0.16757301224062515
},
"disease_age": {
"disease_age": 20.0,
"disease_age_delta": -8.0
},
"predictor_attributions": [
{
"predictor_code": "2000005120",
"predictor_name": "Acute Pulmonary Vascular Disease (PVD) Diagnosis",
"score_attribution": 0.03670002499206265,
"risk_attribution": -0.0005927134674912569,
"age_attribution": -0.007115027747079737,
"multiplier": 0.0
},
{
"predictor_code": "2000005101",
"predictor_name": "Acute Renal Disease (ARD) Diagnosis",
"score_attribution": -0.0642016045802929,
"risk_attribution": 0.0010368700205931184,
"age_attribution": 0.015843773045430415,
"multiplier": 0.0
},
{
"predictor_code": "2000005102",
"predictor_name": "Asthma Diagnosis",
"score_attribution": 1.0093395974344352,
"risk_attribution": -0.016301056274511543,
"age_attribution": -0.1956805000412256,
"multiplier": 0.9651324695066987
},
{
"predictor_code": "2000005119",
"predictor_name": "Atrial Fibrillation and Flutter Diagnosis",
"score_attribution": 0.025883740014275396,
"risk_attribution": -0.00041802808850461,
"age_attribution": -0.00501807637568633,
"multiplier": 1.0028179558420587
},
{
"predictor_code": "2000005103",
"predictor_name": "Breast Cancer Diagnosis",
"score_attribution": -0.014237273684958784,
"risk_attribution": 0.00022993509828015158,
"age_attribution": 0.003513496812498773,
"multiplier": 0.0
},
{
"predictor_code": "2000005117",
"predictor_name": "Coronary Heart Disease (CHD) Diagnosis",
"score_attribution": 0.583762527201949,
"risk_attribution": -0.009427893080840103,
"age_attribution": -0.11317394414978076,
"multiplier": 0.0
},
{
"predictor_code": "2000005110",
"predictor_name": "Chronic Obstructive Pulmonary Disease (COPD) Diagnosis",
"score_attribution": 0.09355944738829015,
"risk_attribution": -0.0015110056325594505,
"age_attribution": -0.018138354519189066,
"multiplier": 0.0
},
{
"predictor_code": "2000005801",
"predictor_name": "Cerebral Arterial Occlusion and Stenosis Diagnosis",
"score_attribution": -0.0524214323175732,
"risk_attribution": 0.0008466176501658226,
"age_attribution": 0.012936643589916828,
"multiplier": 0.0
},
{
"predictor_code": "2000005109",
"predictor_name": "Chronic Kidney Disease (CKD) Diagnosis",
"score_attribution": 0.1199451619646537,
"risk_attribution": -0.001937140720537549,
"age_attribution": -0.023253748619818573,
"multiplier": 1.0026233495051875
},
{
"predictor_code": "2000005104",
"predictor_name": "Colon Cancer Diagnosis",
"score_attribution": 0.012553748374730129,
"risk_attribution": -0.00020274579460935759,
"age_attribution": -0.002433793111459185,
"multiplier": 0.0
},
{
"predictor_code": "2000005802",
"predictor_name": "Deep Venous Thrombosis Diagnosis",
"score_attribution": 0.06273067786006052,
"risk_attribution": -0.0010131142308637373,
"age_attribution": -0.012161586093305981,
"multiplier": 1.0105451827361127
},
{
"predictor_code": "2000005111",
"predictor_name": "Dementia or Cognitive Impairment Diagnosis",
"score_attribution": 0.011320629595156064,
"risk_attribution": -0.00018283065537367575,
"age_attribution": -0.0021947285785600353,
"multiplier": 0.0
},
{
"predictor_code": "2000005803",
"predictor_name": "Glaucoma Diagnosis",
"score_attribution": 0.07596771617795474,
"risk_attribution": -0.001226895308190267,
"age_attribution": -0.0147278485125099,
"multiplier": 0.9986702878200189
},
{
"predictor_code": "2000005118",
"predictor_name": "Heart Failure Diagnosis",
"score_attribution": -0.0040169836577335595,
"risk_attribution": 6.487516869936484e-05,
"age_attribution": 0.0009913175506499636,
"multiplier": 0.0
},
{
"predictor_code": "2000005804",
"predictor_name": "Hemorrhagic Cerebral Stroke (Brain Bleed) Diagnosis",
"score_attribution": 0.005451838825543951,
"risk_attribution": -8.804839493135188e-05,
"age_attribution": -0.001056947087222452,
"multiplier": 0.0
},
{
"predictor_code": "2000005805",
"predictor_name": "Ischemic Cerebral Stroke Diagnosis",
"score_attribution": 0.004137780823641522,
"risk_attribution": -6.682606947079237e-05,
"age_attribution": -0.0008021908807394856,
"multiplier": 0.0
},
{
"predictor_code": "2000005114",
"predictor_name": "Liver Disease Diagnosis",
"score_attribution": 0.15865220434108407,
"risk_attribution": -0.002562267959775858,
"age_attribution": -0.03075787649371665,
"multiplier": 0.0
},
{
"predictor_code": "2000005105",
"predictor_name": "Lung Cancer Diagnosis",
"score_attribution": -0.012641881913343306,
"risk_attribution": 0.00020416917062299759,
"age_attribution": 0.0031197835196104247,
"multiplier": 0.0
},
{
"predictor_code": "2000005806",
"predictor_name": "Major Adverse Cardiac Event (MACE) Diagnosis",
"score_attribution": 0.07369719534509969,
"risk_attribution": -0.001190225897852162,
"age_attribution": -0.014287663015917457,
"multiplier": 0.0
},
{
"predictor_code": "2000005807",
"predictor_name": "Peripheral Arterial Disease (PAD) Diagnosis",
"score_attribution": 0.014546005258763227,
"risk_attribution": -0.00023492118103277205,
"age_attribution": -0.002820031622530276,
"multiplier": 1.006407666181046
},
{
"predictor_code": "2000005112",
"predictor_name": "Parkinson's Disease Diagnosis",
"score_attribution": 0.00020092862138158427,
"risk_attribution": -3.2450413841155074e-06,
"age_attribution": -3.895399844064526e-05,
"multiplier": 0.0
},
{
"predictor_code": "2000005107",
"predictor_name": "Prostate Cancer Diagnosis",
"score_attribution": -0.002067139561670307,
"risk_attribution": 3.338475812076289e-05,
"age_attribution": 0.0005101319551503558,
"multiplier": 0.0
},
{
"predictor_code": "2000005108",
"predictor_name": "Rectal Cancer Diagnosis",
"score_attribution": 0.003879814368808409,
"risk_attribution": -6.265985454386439e-05,
"age_attribution": -0.0007521789670050848,
"multiplier": 0.0
},
{
"predictor_code": "2000005106",
"predictor_name": "Skin Cancer Diagnosis",
"score_attribution": -0.001102369729432511,
"risk_attribution": 1.780351334721584e-05,
"age_attribution": 0.00027204453719592,
"multiplier": 0.0
},
{
"predictor_code": "2000005116",
"predictor_name": "Stroke Diagnosis",
"score_attribution": 0.03725075652589553,
"risk_attribution": -0.0006016079027714907,
"age_attribution": -0.007221797978033536,
"multiplier": 0.0
},
{
"predictor_code": "2000005113",
"predictor_name": "Type 2 Diabetes Diagnosis",
"score_attribution": 0.0,
"risk_attribution": 0.0,
"age_attribution": 0.0,
"multiplier": 1.0017500573231581
},
{
"predictor_code": "2000005808",
"predictor_name": "Acute Cardiovascular Disease (CVD) Diagnosis",
"score_attribution": 0.07069634535226649,
"risk_attribution": -0.0011417615111097017,
"age_attribution": -0.01370588872643264,
"multiplier": 0.0
},
{
"predictor_code": "4548-4",
"predictor_name": "Hemoglobin A1c/Hemoglobin.total in Blood",
"score_attribution": 9.50129165615617,
"risk_attribution": -0.15344794790695754,
"age_attribution": -1.842013834630059,
"multiplier": 1.3214966157876726
},
{
"predictor_code": "6768-6",
"predictor_name": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.019926797009401694,
"risk_attribution": -0.00032182215009366616,
"age_attribution": -0.003863204825146091,
"multiplier": 0.9687737917575274
},
{
"predictor_code": "1743-4",
"predictor_name": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma by With P-5'-P",
"score_attribution": 2.0252557385860532,
"risk_attribution": -0.03270832517507886,
"age_attribution": -0.3926359935201331,
"multiplier": 0.6961928543863765
},
{
"predictor_code": "1920-8",
"predictor_name": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 0.919911539750936,
"risk_attribution": -0.014856773493449167,
"age_attribution": -0.17834309735762643,
"multiplier": 0.7894250990788122
},
{
"predictor_code": "1751-7",
"predictor_name": "Albumin [Mass/volume] in Serum or Plasma",
"score_attribution": -1.4844652986946023,
"risk_attribution": 0.023974440746294193,
"age_attribution": 0.3663386832788572,
"multiplier": 1.0195532286093811
},
{
"predictor_code": "1884-6",
"predictor_name": "Apolipoprotein B [Mass/volume] in Serum or Plasma",
"score_attribution": 13.566978896830925,
"risk_attribution": -0.21910969017215967,
"age_attribution": -2.630227944418956,
"multiplier": 1.720408766386811
},
{
"predictor_code": "1975-2",
"predictor_name": "Bilirubin.total [Mass/volume] in Serum or Plasma",
"score_attribution": -5.248216167066128,
"risk_attribution": 0.08475984425618802,
"age_attribution": 1.2951630475272942,
"multiplier": 0.9884321765039126
},
{
"predictor_code": "30522-7",
"predictor_name": "C reactive protein [Mass/volume] in Serum or Plasma by High sensitivity method",
"score_attribution": 0.8308130111016325,
"risk_attribution": -0.01341781267869443,
"age_attribution": -0.16106958041313177,
"multiplier": 1.2028811966565254
},
{
"predictor_code": "17861-6",
"predictor_name": "Calcium [Mass/volume] in Serum or Plasma",
"score_attribution": -2.010208965505931,
"risk_attribution": 0.032465316483700525,
"age_attribution": 0.49608253300793326,
"multiplier": 0.9887038879330063
},
{
"predictor_code": "2160-0",
"predictor_name": "Creatinine [Mass/volume] in Serum or Plasma",
"score_attribution": -2.290028490414167,
"risk_attribution": 0.036984463293981626,
"age_attribution": 0.5651368358607799,
"multiplier": 0.994924265366541
},
{
"predictor_code": "33863-2",
"predictor_name": "Cystatin C [Mass/volume] in Serum or Plasma",
"score_attribution": 1.8216741043628477,
"risk_attribution": -0.02942043705064107,
"age_attribution": -0.3531676559207113,
"multiplier": 0.8270516664906032
},
{
"predictor_code": "2324-2",
"predictor_name": "Gamma glutamyl transferase [Enzymatic activity/volume] in Serum or Plasma",
"score_attribution": 3.2756951611470493,
"risk_attribution": -0.05290319660075736,
"age_attribution": -0.6350584765971349,
"multiplier": 0.9964280841295855
},
{
"predictor_code": "2086-7",
"predictor_name": "Deprecated Cholesterol.in HDL [Mass/volume] in Serum or Plasma",
"score_attribution": 9.321172945778805,
"risk_attribution": -0.15053899115799318,
"age_attribution": -1.8070942501779959,
"multiplier": 0.3498302874563115
},
{
"predictor_code": "2484-4",
"predictor_name": "Insulin-like growth factor-I [Mass/volume] in Serum or Plasma",
"score_attribution": 1.5090042359625007,
"risk_attribution": -0.024370749974959624,
"age_attribution": -0.2925504004876325,
"multiplier": 0.8788303663034519
},
{
"predictor_code": "13457-7",
"predictor_name": "Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation",
"score_attribution": -18.747918572072976,
"risk_attribution": 0.3027830043031415,
"age_attribution": 4.626640858464023,
"multiplier": 1.4172019165518153
},
{
"predictor_code": "44711-0",
"predictor_name": "Cholesterol in LDL/Apolipoprotein B [Mass Ratio] in Serum or Plasma",
"score_attribution": 0.14052502493510913,
"risk_attribution": -0.0022695100293963766,
"age_attribution": -0.03096127505217863,
"multiplier": 0.4637931499498156
},
{
"predictor_code": "43583-4",
"predictor_name": "Lipoprotein a [Moles/volume] in Serum or Plasma",
"score_attribution": -1.3340034318104277,
"risk_attribution": 0.0215444485360596,
"age_attribution": 0.3292074669099072,
"multiplier": 0.9525891605762435
},
{
"predictor_code": "2885-2",
"predictor_name": "Protein [Mass/volume] in Serum or Plasma",
"score_attribution": 2.320990193178776,
"risk_attribution": -0.037484501596653466,
"age_attribution": -0.44996998309234176,
"multiplier": 1.2659561050639456
},
{
"predictor_code": "13967-5",
"predictor_name": "Sex hormone binding globulin [Moles/volume] in Serum or Plasma",
"score_attribution": 2.0710711593523423,
"risk_attribution": -0.03344825428719339,
"age_attribution": -0.4015182215313342,
"multiplier": 0.634117956487148
},
{
"predictor_code": "2986-8",
"predictor_name": "Testosterone [Mass/volume] in Serum or Plasma",
"score_attribution": -1.0515971585780999,
"risk_attribution": 0.016983525171974212,
"age_attribution": 0.2595148022335441,
"multiplier": 0.7540186331390297
},
{
"predictor_code": "2571-8",
"predictor_name": "Triglyceride [Mass/volume] in Serum or Plasma",
"score_attribution": 9.443959706184714,
"risk_attribution": -0.15252202431772385,
"age_attribution": -1.830898899015456,
"multiplier": 0.38122529602781324
},
{
"predictor_code": "3084-1",
"predictor_name": "Urate [Mass/volume] in Serum or Plasma",
"score_attribution": 3.474317346102644,
"risk_attribution": -0.056110988529814124,
"age_attribution": -0.6735653265911145,
"multiplier": 0.743563984381393
},
{
"predictor_code": "6299-2",
"predictor_name": "Urea nitrogen [Mass/volume] in Blood",
"score_attribution": -0.6439022255361412,
"risk_attribution": 0.010399162423061164,
"age_attribution": 0.15890320485811799,
"multiplier": 0.914323261314982
},
{
"predictor_code": "14635-7",
"predictor_name": "25-hydroxyvitamin D3 [Moles/volume] in Serum or Plasma",
"score_attribution": 1.8025849221933294,
"risk_attribution": -0.029112142564255445,
"age_attribution": -0.3494668393453941,
"multiplier": 0.8113886156660141
},
{
"predictor_code": "20570-8",
"predictor_name": "Hematocrit [Volume Fraction] of Blood",
"score_attribution": -0.21933963547335983,
"risk_attribution": 0.0035423833070359085,
"age_attribution": 0.05412898052978066,
"multiplier": 0.9346073007951265
},
{
"predictor_code": "718-7",
"predictor_name": "Hemoglobin [Mass/volume] in Blood",
"score_attribution": 2.2929243485890787,
"risk_attribution": -0.03703123203979545,
"age_attribution": -0.4445288624652001,
"multiplier": 0.9196388527697433
},
{
"predictor_code": "785-6",
"predictor_name": "MCH [Entitic mass] by Automated count",
"score_attribution": -0.2944837028252969,
"risk_attribution": 0.004755976505710729,
"age_attribution": 0.0726731517637825,
"multiplier": 0.9408820635237103
},
{
"predictor_code": "28540-3",
"predictor_name": "MCHC [Mass/volume]",
"score_attribution": -0.06965798516890731,
"risk_attribution": 0.0011249917659959918,
"age_attribution": 0.017190307236602875,
"multiplier": 1.0026385992028737
},
{
"predictor_code": "787-2",
"predictor_name": "MCV [Entitic volume] by Automated count",
"score_attribution": -0.4053311159079821,
"risk_attribution": 0.006546186582812408,
"age_attribution": 0.10002825086194785,
"multiplier": 0.9725054980980149
},
{
"predictor_code": "788-0",
"predictor_name": "Erythrocyte distribution width [Ratio] by Automated count",
"score_attribution": -2.707077435950417,
"risk_attribution": 0.04371989539997677,
"age_attribution": 0.6680568311647704,
"multiplier": 0.9677564564019954
},
{
"predictor_code": "789-8",
"predictor_name": "Erythrocytes [#/volume] in Blood by Automated count",
"score_attribution": 0.22341403937543092,
"risk_attribution": -0.0036081858252979193,
"age_attribution": -0.04331324269090138,
"multiplier": 0.9503507198866034
},
{
"predictor_code": "6690-2",
"predictor_name": "Leukocytes [#/volume] in Blood by Automated count",
"score_attribution": 1.4548218745097041,
"risk_attribution": -0.023495692932341883,
"age_attribution": -0.28204607507580165,
"multiplier": 0.8634941521782143
},
{
"predictor_code": "8302-2",
"predictor_name": "Body height",
"score_attribution": -0.23410841351606831,
"risk_attribution": 0.003780902317477882,
"age_attribution": 0.057773642824386844,
"multiplier": 0.7974873819890199
},
{
"predictor_code": "41909-3",
"predictor_name": "Deprecated Body mass index (BMI)",
"score_attribution": 12.601905584772343,
"risk_attribution": -0.20352354413282517,
"age_attribution": -2.443129341768194,
"multiplier": 0.47652137173595394
},
{
"predictor_code": "8462-4",
"predictor_name": "Diastolic blood pressure",
"score_attribution": 1.122903587716,
"risk_attribution": -0.018135139670271833,
"age_attribution": -0.21769713196714888,
"multiplier": 0.9190113994958621
},
{
"predictor_code": "2000000874",
"predictor_name": "Mean grip strength",
"score_attribution": 2.4959265756124234,
"risk_attribution": -0.04030976261064593,
"age_attribution": -0.48388487048706,
"multiplier": 0.9249438399450247
},
{
"predictor_code": "40443-4",
"predictor_name": "Heart rate --resting",
"score_attribution": 1.9860712087303949,
"risk_attribution": -0.032075486408135644,
"age_attribution": -0.3850392952279771,
"multiplier": 0.9177055155653392
},
{
"predictor_code": "8480-6",
"predictor_name": "Systolic blood pressure",
"score_attribution": 1.344492156710703,
"risk_attribution": -0.021713843747821683,
"age_attribution": -0.26065647101866146,
"multiplier": 0.9927157506396581
},
{
"predictor_code": "8280-0",
"predictor_name": "Waist Circumference at umbilicus by Tape measure",
"score_attribution": 1.374082987725809,
"risk_attribution": -0.022191742170525875,
"age_attribution": -0.26639324051070296,
"multiplier": 0.8361454922483974
},
{
"predictor_code": "2000000875",
"predictor_name": "Smoking pack years",
"score_attribution": -0.767673148715377,
"risk_attribution": 0.012398090027825057,
"age_attribution": 0.18944758812228885,
"multiplier": 0.9437333548971151
}
]
}
],
"errors": null
}
],
"validations": [
{
"code": "30525-0",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "6b0ca208-86a7-440d-b0c1-0818ad53002e",
"validated_value": null,
"validated_unit": null
},
{
"code": "8302-2",
"qa_status": "FLAGGED",
"severity": "BORDERLINE",
"message": "Value is above the borderline upper threshold",
"return_code": "value_over_borderline_maximum",
"id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
"validated_value": 198.12,
"validated_unit": "cm"
},
{
"code": "29463-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "1f796753-f375-494a-8539-b0f140ff4f56",
"validated_value": 95.25431999999999,
"validated_unit": "kg"
},
{
"code": "64219-9",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "8835a752-bc03-473c-a4ba-37387c045f14",
"validated_value": null,
"validated_unit": null
},
{
"code": "4548-4",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
"validated_value": 5.4,
"validated_unit": "%"
},
{
"code": "2885-2",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "a624e601-d519-40d9-b972-b45e15d2a43e",
"validated_value": 8.1,
"validated_unit": "g/dL"
},
{
"code": "2571-8",
"qa_status": "FLAGGED",
"severity": "UNUSUAL",
"message": "Value is below the unusual lower threshold",
"return_code": "value_under_unusual_minimum",
"id": "3197ae19-9438-40d5-aded-67228b498a9e",
"validated_value": 40.0,
"validated_unit": "mg/dL"
},
{
"code": "10835-7",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "LOINC or observation code not found in any mapping",
"return_code": "invalid_code",
"id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
"validated_value": null,
"validated_unit": null
},
{
"code": "1751-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
"validated_value": 4.8,
"validated_unit": "g/dL"
},
{
"code": "17861-6",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "f644ac87-420c-4656-8f07-daa6350bca0c",
"validated_value": 9.6,
"validated_unit": "mg/dL"
},
{
"code": "2160-0",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
"validated_value": 0.83,
"validated_unit": "mg/dL"
},
{
"code": "2498-4",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
"validated_value": null,
"validated_unit": null
},
{
"code": "2086-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
"validated_value": 76.0,
"validated_unit": "mg/dL"
},
{
"code": "1975-2",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "852a0141-90a0-4397-9480-081786fedc54",
"validated_value": 0.7,
"validated_unit": "mg/dL"
},
{
"code": "77147-7",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "LOINC or observation code not found in any mapping",
"return_code": "invalid_code",
"id": "120c6aff-1613-4a14-9a29-88803c8eef71",
"validated_value": null,
"validated_unit": null
},
{
"code": "13457-7",
"qa_status": "PASS",
"severity": null,
"message": "Entry passes all validation checks",
"return_code": "valid_entry",
"id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
"validated_value": 80.0,
"validated_unit": "mg/dL"
},
{
"code": "2276-4",
"qa_status": "FAIL",
"severity": "IMPLAUSIBLE",
"message": "There is no threshold data that exists for this biomarker + sex combination",
"return_code": "no_threshold_data",
"id": "199bd4d3-07ac-494f-93e4-d96979f86824",
"validated_value": null,
"validated_unit": null
}
]
}
]
}Each data object represents the scoring events for a particular user, represented by the uid_ext field. Any errors encountered during the scoring process will be written to the errors array (string). Any validations for the input data will be stored in the validations array against each user's scoring events.
Updated 12 days ago
