|
question,answer,type,columns_used,column_types,sample_answer |
|
Did any children below the age of 18 survive?,True,boolean,"[Age, Survived]","['number[UInt8]', 'boolean']",True |
|
Were there any passengers who paid a fare of more than $500?,True,boolean,[Fare],['number[double]'],False |
|
Is every passenger's name unique?,True,boolean,[Name],['text'],True |
|
Were there any female passengers in the 3rd class who survived?,True,boolean,"[Sex, Pclass, Survived]","['category', 'number[uint8]', 'boolean']",True |
|
How many unique passenger classes are present in the dataset?,3,number,[Pclass],['number[uint8]'],3 |
|
What's the maximum age of the passengers?,80.0,number,[Age],['number[UInt8]'],69.0 |
|
How many passengers boarded without any siblings or spouses?,604,number,[Siblings_Spouses Aboard],['number[uint8]'],12 |
|
"On average, how much fare did the passengers pay?",32.31,number,[Fare],['number[double]'],23.096459999999997 |
|
Which passenger class has the highest number of survivors?,1,category,"[Pclass, Survived]","['number[uint8]', 'boolean']",3 |
|
What's the most common gender among the survivors?,female,category,"[Sex, Survived]","['category', 'boolean']",female |
|
"Among those who survived, which fare range was the most common: (0-50, 50-100, 100-150, 150+)?",0-50,category,"[Fare, Survived]","['number[double]', 'boolean']",0-50 |
|
"What's the most common age range among passengers: (0-18, 18-30, 30-50, 50+)?",18-30,category,[Age],['number[UInt8]'],18-30 |
|
Name the top 3 passenger classes by survival rate.,"[1, 2, 3]",list[category],"[Pclass, Survived]","['number[uint8]', 'boolean']","[1, 3, 2]" |
|
"Could you list the bottom 3 fare ranges by number of survivors: (0-50, 50-100, 100-150, 150+)?","['50-100', '150+', '100-150']",list[category],"[Fare, Survived]","['number[double]', 'boolean']","[50-100, 150+, 100-150]" |
|
"What is the top 4 age ranges('30-50', '18-30', '0-18', '50+') with the highest number of survivors?","['30-50', '18-30', '0-18', '50+']",list[category],"[Age, Survived]","['number[UInt8]', 'boolean']","[30-50, 18-30, 0-18, 50+]" |
|
What are the top 2 genders by average fare paid?,"['female', 'male']",list[category],"[Sex, Fare]","['category', 'number[double]']","[female, male]" |
|
What are the oldest 3 ages among the survivors?,"[24.0, 22.0, 27.0]",list[number],"[Age, Survived]","['number[UInt8]', 'boolean']","[56.0, 47.0, 42.0]" |
|
Which are the top 4 fares paid by survivors?,"[13.0, 26.0, 7.75, 10.5]",list[number],"[Fare, Survived]","['number[double]', 'boolean']","[133.65, 39.0, 35.5, 30.5]" |
|
Could you list the youngest 3 ages among the survivors?,"[53.0, 55.0, 11.0]",list[number],"[Age, Survived]","['number[UInt8]', 'boolean']","[14.0, 24.0, 28.0]" |
|
Which are the bottom 4 fares among those who didn't survive?,"[90.0, 12.275, 9.35, 10.5167]",list[number],"[Fare, Survived]","['number[double]', 'boolean']","[13.0, 7.75, 11.5, 10.1708]" |
|
|