jorses
DataBench v1
a7090e1
raw
history blame
3.22 kB
question,answer,type,columns_used,column_types,sample_answer
Is there any wine with a quality rating of 10?,False,boolean,['quality'],['number[uint8]'],False
Are there any wines with residual sugar above 15g/dm^3?,True,boolean,['residual sugar'],['number[double]'],False
Is the highest alcohol content wine also the one with the highest quality rating?,False,boolean,"['alcohol', 'quality']","['number[double]', 'number[uint8]']",False
Does any wine have a pH level below 2.5?,False,boolean,['pH'],['number[double]'],False
How many unique quality ratings are there in the dataset?,6,number,['quality'],['number[uint8]'],5
What is the maximum fixed acidity level found in the dataset?,15.9,number,['fixed acidity'],['number[double]'],10.7
What is the minimum volatile acidity level in the dataset?,0.12,number,['volatile acidity'],['number[double]'],0.28
How many wines have free sulfur dioxide above 50 mg/dm^3?,16,number,['free sulfur dioxide'],['number[UInt8]'],0
What is the quality rating of the wine with the highest alcohol content?,5,category,"['alcohol', 'quality']","['number[double]', 'number[uint8]']",7.0
What is the quality rating of the wine with the highest fixed acidity?,5,category,"['fixed acidity', 'quality']","['number[double]', 'number[uint8]']",6.0
What is the quality rating of the wine with the lowest volatile acidity?,7,category,"['volatile acidity', 'quality']","['number[double]', 'number[uint8]']",7.0
What is the quality rating of the wine with the highest pH level?,6,category,"['pH', 'quality']","['number[double]', 'number[uint8]']",6.0
List the quality ratings of the top 3 wines with the highest alcohol content.,"['5', '6', '6']",list[category],"['alcohol', 'quality']","['number[double]', 'number[uint8]']","[7, 7, 8]"
Enumerate the quality ratings of the bottom 2 wines with the lowest residual sugar.,"['6', '6']",list[category],"['residual sugar', 'quality']","['number[double]', 'number[uint8]']","[5, 5]"
Which are the quality ratings of the top 5 wines with the highest density?,"['6', '6', '7', '5', '5']",list[category],"['density', 'quality']","['number[double]', 'number[uint8]']","[6, 7, 5, 7, 6]"
List the quality ratings of the bottom 4 wines with the lowest pH level.,"['4', '6', '6', '8']",list[category],"['pH', 'quality']","['number[double]', 'number[uint8]']","[7, 8, 5, 7]"
What are the alcohol contents of the top 4 wines with the highest quality ratings?,"['12.8', '12.6', '12.9', '9.8']",list[number],"['quality', 'alcohol']","['number[uint8]', 'number[double]']","[11.7, 11.8, 12.3, 10.0]"
List the volatile acidity levels of the bottom 3 wines with the lowest quality ratings.,"['0.58', '0.61', '1.185']",list[number],"['quality', 'volatile acidity']","['number[uint8]', 'number[double]']","[0.76, 0.5, 0.46]"
Enumerate the fixed acidity levels of the top 5 wines with the highest quality ratings.,"['7.9', '10.3', '5.6', '12.6', '11.3']",list[number],"['quality', 'fixed acidity']","['number[uint8]', 'number[double]']","[9.4, 10.5, 8.9, 10.1, 7.7]"
Provide the residual sugar levels of the bottom 2 wines with the lowest quality ratings.,"['2.2', '2.1']",list[number],"['quality', 'residual sugar']","['number[uint8]', 'number[double]']","[1.8, 1.6]"