|
question,answer,type,columns_used,column_types,sample_answer |
|
Are there any individuals in the dataset who are above 60 years of age?,False,boolean,['Age'],['number[uint8]'],True |
|
Does anyone have a Diabetes Pedigree Function score above 2.5?,True,boolean,['DiabetesPedigreeFunction'],['number[double]'],False |
|
Does the person with the highest glucose level also have diabetes?,True,boolean,"['Glucose', 'Outcome']","['number[uint8]', 'number[uint8]']",True |
|
Is there anyone who has zero pregnancies and is diabetic?,True,boolean,"['Pregnancies', 'Outcome']","['number[uint8]', 'number[uint8]']",True |
|
What is the maximum number of pregnancies recorded in the dataset?,17,number,['Pregnancies'],['number[uint8]'],10 |
|
What is the minimum blood pressure level recorded in the dataset?,0,number,['BloodPressure'],['number[uint8]'],0 |
|
What is the average BMI recorded in the dataset?,31.992578124999998,number,['BMI'],['number[double]'],31.910000000000004 |
|
How many individuals have an insulin level above 150?,187,number,['Insulin'],['number[uint16]'],4 |
|
What is the diabetes outcome for the person with the highest BMI?,1,category,"['BMI', 'Outcome']","['number[double]', 'number[uint8]']",1 |
|
What is the diabetes outcome for the person with the lowest blood pressure?,0,category,"['BloodPressure', 'Outcome']","['number[uint8]', 'number[uint8]']",0 |
|
What is the diabetes outcome for the person with the highest insulin level?,1,category,"['Insulin', 'Outcome']","['number[uint16]', 'number[uint8]']",1 |
|
What is the diabetes outcome for the person with the lowest glucose level?,0,category,"['Glucose', 'Outcome']","['number[uint8]', 'number[uint8]']",0 |
|
List the diabetes outcomes of the top 3 individuals with the highest number of pregnancies.,"[1, 1, 1]",list[category],"['Pregnancies', 'Outcome']","['number[uint8]', 'number[uint8]']","[1, 0, 0]" |
|
List the diabetes outcomes of the bottom 2 individuals with the lowest BMI.,"[0, 0]",list[category],"['BMI', 'Outcome']","['number[double]', 'number[uint8]']","[0, 0]" |
|
List the diabetes outcomes of the top 5 individuals with the highest insulin levels.,"[1, 1, 1, 1, 1]",list[category],"['Insulin', 'Outcome']","['number[uint16]', 'number[uint8]']","[1, 0, 0, 1, 1]" |
|
List the diabetes outcomes of the bottom 4 individuals with the lowest blood pressure.,"[0, 0, 0, 0]",list[category],"['BloodPressure', 'Outcome']","['number[uint8]', 'number[uint8]']","[0, 1, 0, 1]" |
|
What are the ages of the top 4 individuals with the highest number of pregnancies?,"[51, 67, 67, 67]",list[number],"['Pregnancies', 'Age']","['number[uint8]', 'number[uint8]']","[40, 34, 50, 60]" |
|
List the BMI of the bottom 3 individuals with the lowest glucose levels.,"[32.0, 32.0, 32.0]",list[number],"['Glucose', 'BMI']","['number[uint8]', 'number[double]']","[20.4, 37.2, 30.2]" |
|
Enumerate the blood pressure levels of the top 5 individuals with the highest Diabetes Pedigree Function scores.,"[0, 0, 0, 0, 0]",list[number],"['DiabetesPedigreeFunction', 'BloodPressure']","['number[double]', 'number[uint8]']","[74, 50, 0, 80, 58]" |
|
Provide the glucose levels of the bottom 2 individuals with the lowest insulin levels.,"[117, 111]",list[number],"['Insulin', 'Glucose']","['number[uint16]', 'number[uint8]']","[112, 108]" |
|
|