jorses
DataBench v1
a7090e1
raw
history blame
3.02 kB
question,answer,type,columns_used,column_types,sample_answer
Is there any customer with a high salaryl?,True,boolean,['salary'],['category'],True
Do we have any employees who suffered a work accident?,True,boolean,['Work Accident'],['category'],True
Is there any employee with more than 100 hours per month on average?,True,boolean,['Average Monthly Hours'],['number'],True
Does any employee have a satisfaction level above 0.9?,True,boolean,['Satisfaction Level'],['number'],True
How many employees do we have in the dataset?,14999,number,['Number of Projects'],['category'],20
What's the median satisfaction level of our employees?,0.64,number,['Satisfaction Level'],['number'],0.645
What's the maximum number of web purchases made by a customer?,27,number,['Marital_Status'],['category'],8
What's the most common marital status among the employees?,Together,number,['Marital_Status'],['number'],16
What's the most common education level among our employees?,Graduation,category,['Education'],['category'],Graduation
What's the most common marital status among our employees?,Married,category,['Marital_Status'],['category'],Married
"Among the employees who have left the company in sales, what's the most common salary level?",low,category,"['Left', 'Department', 'salary']","['category', 'category', 'category']",
"Among the employees who have had a work accident in sales, what's the most common salary level?",low,category,"['Work Accident', 'Department', 'salary']","['category', 'category', 'category']",low
Who are the top 3 satisfaction levels?,"[1, 1, 1]",list[number],['Satisfaction Level'],['number'],"[0.98,0.93,0.93]"
What are the top 2 most common Work Accident statuses among our employees?,"['No', 'Yes']",list[category],['Work Accident'],['category'],"['No', 'Yes']"
What are the top 3 most common marital statuses among our employees?,"['Together', 'Single', 'Married']",list[category],['Marital_Status'],['category'],"['Married', 'Together', 'Single']"
What are the highest 3 years spent in the company? ,"[10, 10, 10]",list[number],['Years in the Company'],['number'],"[6, 5, 5]"
What are the top 3 departments with a 'low' salary level?,"['sales', 'technical', 'support']",list[category],"['Department', 'salary']","['category', 'category']","[95, 93]"
"For the 2 employees with the top satisfaction levels who belong to the sales department, what are their salary levels?","['low', 'low']",list[category],"['Satisfaction Level', 'Department', 'salary']","['number', 'category', 'category']","['low', 'low']"
What are the top 3 average monthly hours worked among the employees in the top 3 departments with the most employees?,"[200.91135265700484, 202.49742647058824, 200.75818752803949]",list[number],"['Department', 'Average Monthly Hours']","['category', 'number']","[265, 256, 249]"
What are the lowest 2 satisfaction levels among the employees who have not had a work accident?,"[0.09, 0.09]",list[number],"['Work Accident', 'Satisfaction Level']","['category', 'number']","[0.14, 0.22]"