jorses
DataBench v1
a7090e1
raw
history blame
3.39 kB
question,answer,type,columns_used,column_types,sample_answer
Is there any purchase with a total cost above 1000?,True,boolean,['Total'],['number[double]'],False
Are there any customers who made a purchase using cash?,True,boolean,['Payment'],['category'],True
Is the customer with the highest total purchase cost a 'Member'?,True,boolean,"['Total', 'Customer type']","['number[double]', 'category']",False
Does any customer with a rating strictly above 9 use 'Ewallet' as their payment method?,True,boolean,"['Rating', 'Payment']","['number[double]', 'category']",False
How many unique branches are there in the dataset?,3,number,['Branch'],['category'],3
What is the maximum quantity of products bought in a single purchase?,10,number,['Quantity'],['number[uint8]'],10
What is the minimum total cost of a purchase in the dataset?,10.6785,number,['Total'],['number[double]'],45.927
How many purchases were made in Yangon city?,340,number,['City'],['category'],11
What is the payment method used for the purchase with the highest total cost?,Credit card,category,"['Total', 'Payment']","['number[double]', 'category']",Credit card
What is the product line of the purchase with the highest total cost?,Fashion accessories,category,"['Total', 'Product line']","['number[double]', 'category']",Electronic accessories
What is the customer type of the purchase with the lowest total cost?,Member,category,"['Total', 'Customer type']","['number[double]', 'category']",Normal
What is the gender of the customer with the highest total purchase cost?,Female,category,"['Total', 'Gender']","['number[double]', 'category']",Male
List the payment methods of the top 3 purchases with the highest total cost.,"['Credit card', 'Credit card', 'Ewallet']",list[category],"['Total', 'Payment']","['number[double]', 'category']","['Credit card', 'Cash', 'Ewallet']"
Enumerate the product lines of the bottom 2 purchases with the lowest total cost.,"['Sports and travel', 'Fashion accessories']",list[category],"['Total', 'Product line']","['number[double]', 'category']","['Sports and travel', 'Sports and travel']"
Which are the customer types of the top 5 purchases with the highest total cost?,"['Member', 'Normal', 'Member', 'Normal', 'Normal']",list[category],"['Total', 'Customer type']","['number[double]', 'category']","['Normal', 'Normal', 'Normal', 'Normal', 'Normal']"
List the genders of the bottom 4 purchases with the lowest total cost.,"['Male', 'Female', 'Female', 'Male']",list[category],"['Total', 'Gender']","['number[double]', 'category']","['Male', 'Male', 'Female', 'Female']"
What are the quantities of products bought in the top 4 purchases with the highest total cost?,"[10, 10, 10, 10]",list[number],"['Total', 'Quantity']","['number[double]', 'number[uint8]']","[10, 7, 10, 10]"
List the unit prices of the bottom 3 purchases with the lowest total cost.,"[10.17, 12.09, 12.54]",list[number],"['Total', 'Unit price']","['number[double]', 'number[double]']","[21.87, 60.87, 42.97]"
Enumerate the ratings of the top 5 purchases with the highest total cost.,"[6.6, 8.7, 4.5, 8.0, 4.4]",list[number],"['Total', 'Rating']","['number[double]', 'number[double]']","[4.2, 7.6, 8.1, 9.0, 6.4]"
Provide the gross incomes of the bottom 2 purchases with the lowest total cost.,"[0.5085, 0.6045]",list[number],"['Total', 'gross income']","['number[double]', 'number[double]']","[2.187, 6.087]"