input
stringlengths
3.68k
4.11k
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose oilers points record of all rows is 3rd minimum . the date record of this row is oct 29 . Output:
[ "eq { hop { nth_argmin { all_rows ; oilers points ; 3 } ; date } ; oct 29 }" ]
task210-fbbde6a16d544813bc4b5db7b7f32dad
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose losses record is equal to 8 . the number of such rows is 2 . Output:
[ "eq { count { filter_eq { all_rows ; losses ; 8 } } ; 2 }" ]
task210-8727192aac114e9c80bc30f34da4ab47
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose no in series record is greater than or equal to 40 . the sum of the us viewers ( millions ) record of these rows is 26.10 . Output:
[ "round_eq { sum { filter_greater_eq { all_rows ; no in series ; 40 } ; us viewers ( millions ) } ; 26.10 }" ]
task210-d96985d185f24b6a9cd9cb24d75bef88
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose points record of all rows is maximum . the performer record of this row is kiev connolly & the missing passengers . Output:
[ "eq { hop { argmax { all_rows ; points } ; performer } ; kiev connolly & the missing passengers }" ]
task210-fedfea70afc04c42b1816424b14244b7
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose score record fuzzily matches to 3 - 0 . take the competition record of this row . select the rows whose score record fuzzily matches to 3 - 2 . take the competition record of this row . the first record fuzzily matches to the second record . the competition record of the first row is friendly . the competition record of the second row is friendly . Output:
[ "and { eq { hop { filter_eq { all_rows ; score ; 3 - 0 } ; competition } ; hop { filter_eq { all_rows ; score ; 3 - 2 } ; competition } } ; and { eq { hop { filter_eq { all_rows ; score ; 3 - 0 } ; competition } ; friendly } ; eq { hop { filter_eq { all_rows ; score ; 3 - 2 } ; competition } ; friendly } } }" ]
task210-0986d86767674c7f83cf65f8a64c4579
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose college name record fuzzily matches to government thiruvarur medical college . take the estd record of this row . select the rows whose college name record fuzzily matches to government theni medical college . take the estd record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; college name ; government thiruvarur medical college } ; estd } ; hop { filter_eq { all_rows ; college name ; government theni medical college } ; estd } }" ]
task210-679de99c8e00498882301c057d80bee4
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose start record of all rows is minimum . the year record of this row is 1952 . Output:
[ "eq { hop { argmin { all_rows ; start } ; year } ; 1952 }" ]
task210-dc81ce111ddb426ab89e74410a75bbe6
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the sum of the wins record of all rows is 4 . Output:
[ "round_eq { sum { all_rows ; wins } ; 4 }" ]
task210-1c60426a77b0429c9c65059736d96957
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the lost record of all rows is 13.3 . Output:
[ "round_eq { avg { all_rows ; lost } ; 13.3 }" ]
task210-d99c9227971b4837be03e16943c9551d
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose date record fuzzily matches to november . among these rows , select the rows whose attendance record is greater than 60000 . the number of such rows is 1 . Output:
[ "eq { count { filter_greater { filter_eq { all_rows ; date ; november } ; attendance ; 60000 } } ; 1 }" ]
task210-141bb7624c20472296d0b040fb3bd19f
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose silver record is greater than 0 . among these rows , select the rows whose gold record is equal to 4 . there is only one such row in the table . the athlete record of this unqiue row is mohammad nassiri . Output:
[ "and { only { filter_eq { filter_greater { all_rows ; silver ; 0 } ; gold ; 4 } } ; eq { hop { filter_eq { filter_greater { all_rows ; silver ; 0 } ; gold ; 4 } ; athlete } ; mohammad nassiri } }" ]
task210-06da4fdc215e4af2b19a95e3f296ab0d
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opposing team record fuzzily matches to queensland . take the against record of this row . select the rows whose opposing team record fuzzily matches to new south wales . take the against record of this row . the first record is less than the second record . Output:
[ "less { hop { filter_eq { all_rows ; opposing team ; queensland } ; against } ; hop { filter_eq { all_rows ; opposing team ; new south wales } ; against } }" ]
task210-6ae6e8cbd57f4a67a7b636aa344df21f
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the score record of all rows is 70.46 . Output:
[ "round_eq { avg { all_rows ; score } ; 70.46 }" ]
task210-518b46daf58c45e0b8af50bf0e0e1142
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose player record fuzzily matches to mark fidler . take the goals record of this row . select the rows whose player record fuzzily matches to david sacco . take the goals record of this row . the first record is 3 larger than the second record . Output:
[ "eq { diff { hop { filter_eq { all_rows ; player ; mark fidler } ; goals } ; hop { filter_eq { all_rows ; player ; david sacco } ; goals } } ; 3 }" ]
task210-57e05681029f45faa28289db89229377
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose leading scorer record fuzzily matches to lee gregory . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; leading scorer ; lee gregory } } ; 3 }" ]
task210-11188e8522774ff082e842f9803063be
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose to par record is equal to -4 . there is only one such row in the table . the player record of this unqiue row is jim colbert . Output:
[ "and { only { filter_eq { all_rows ; to par ; -4 } } ; eq { hop { filter_eq { all_rows ; to par ; -4 } ; player } ; jim colbert } }" ]
task210-aa6b7ac150de482eab997e8da585ca18
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose total passengers record of all rows is 3rd maximum . the rank record of this row is 3 . Output:
[ "eq { hop { nth_argmax { all_rows ; total passengers ; 3 } ; rank } ; 3 }" ]
task210-50819bd644ee45ae8f97a5ee1bafbc7b
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose club record fuzzily matches to mold rfc . take the losing bonus record of this row . select the rows whose club record fuzzily matches to ruthin rfc . take the losing bonus record of this row . the second record is 1 larger than the first record . Output:
[ "eq { diff { hop { filter_eq { all_rows ; club ; mold rfc } ; losing bonus } ; hop { filter_eq { all_rows ; club ; ruthin rfc } ; losing bonus } } ; -1 }" ]
task210-545738b264294b8dbe0da9e876bd8c55
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose built record fuzzily matches to 19th . the number of such rows is 4 . Output:
[ "eq { count { filter_eq { all_rows ; built ; 19th } } ; 4 }" ]
task210-193edbb3bb514336b8cae8330abdffde
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose cars per set record of all rows is 1st maximum . the class record of this row is class 254 . Output:
[ "eq { hop { nth_argmax { all_rows ; cars per set ; 1 } ; class } ; class 254 }" ]
task210-cbb25d30d49747b7b11ce4c94d3867bf
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the venue records of all rows , most of them fuzzily match to johannesburg . Output:
[ "most_eq { all_rows ; venue ; johannesburg }" ]
task210-acab43440c714e5e816efc95f842bea5
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the maximum score record of all rows is 8 - 0 . Output:
[ "eq { max { all_rows ; score } ; 8 - 0 }" ]
task210-7823d0d3206347caab389231a123a99a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose 2002 - 03 record is equal to 5849 . there is only one such row in the table . the commodity record of this unqiue row is cattle and calves . Output:
[ "and { only { filter_eq { all_rows ; 2002 - 03 ; 5849 } } ; eq { hop { filter_eq { all_rows ; 2002 - 03 ; 5849 } ; commodity } ; cattle and calves } }" ]
task210-f1f1ad54a1da4730a2425db2ebdc2065
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose record record fuzzily matches to 4 - 0 . take the time record of this row . select the rows whose record record fuzzily matches to 5 - 0 . take the time record of this row . the first record is less than the second record . the time record of the first row is 1:43 . the time record of the second row is 5:00 . Output:
[ "and { less { hop { filter_eq { all_rows ; record ; 4 - 0 } ; time } ; hop { filter_eq { all_rows ; record ; 5 - 0 } ; time } } ; and { eq { hop { filter_eq { all_rows ; record ; 4 - 0 } ; time } ; 1:43 } ; eq { hop { filter_eq { all_rows ; record ; 5 - 0 } ; time } ; 5:00 } } }" ]
task210-b061de2a7bdf45e3adf99557b1976bfc
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose location attendance record fuzzily matches to arizona veterans memorial coliseum . the sum of the score record of these rows is 200 . Output:
[ "round_eq { sum { filter_eq { all_rows ; location attendance ; arizona veterans memorial coliseum } ; score } ; 200 }" ]
task210-23345e9b38e7410e9637eb38d84eb52e
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose erp w record is equal to 33 . there is only one such row in the table . the call sign record of this unqiue row is w267 am . Output:
[ "and { only { filter_eq { all_rows ; erp w ; 33 } } ; eq { hop { filter_eq { all_rows ; erp w ; 33 } ; call sign } ; w267 am } }" ]
task210-15b846a3e8744ede85accc02b1d642f6
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose tournament record fuzzily matches to masters tournament . take the top - 5 record of this row . select the rows whose tournament record fuzzily matches to us open . take the top - 5 record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; tournament ; masters tournament } ; top - 5 } ; hop { filter_eq { all_rows ; tournament ; us open } ; top - 5 } }" ]
task210-a7f22f6f2fd746baa48cb520cd290e71
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose royal house record fuzzily matches to twelfth . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; royal house ; twelfth } } ; 3 }" ]
task210-6ca1811a3aa643afb5d4a4853c3b6372
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the caps record of all rows is 10.4 . Output:
[ "round_eq { avg { all_rows ; caps } ; 10.4 }" ]
task210-d9db8afe173d4e4081379c48aeaf6d5c
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose surface record fuzzily matches to carpet . there is only one such row in the table . the tournament record of this unqiue row is eckental , germany . Output:
[ "and { only { filter_eq { all_rows ; surface ; carpet } } ; eq { hop { filter_eq { all_rows ; surface ; carpet } ; tournament } ; eckental , germany } }" ]
task210-1a35599b5ff642188709d3b90719b9de
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose year record is equal to 2013 . among these rows , select the rows whose result record fuzzily matches to won . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { filter_eq { all_rows ; year ; 2013 } ; result ; won } } ; 3 }" ]
task210-3dfb5061eb4f4ebb831a89c0dd4e1edc
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the crowd record of all rows is 24248 . Output:
[ "round_eq { avg { all_rows ; crowd } ; 24248 }" ]
task210-5c67f41e0b6248c88c176153c2d5d7f7
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose drawn record is equal to 2 . there is only one such row in the table . the club record of this unqiue row is abercynon rfc . Output:
[ "and { only { filter_eq { all_rows ; drawn ; 2 } } ; eq { hop { filter_eq { all_rows ; drawn ; 2 } ; club } ; abercynon rfc } }" ]
task210-0ca4bc60f1ee4dd89af13d0f504b382a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the points record of all rows is 19.91 . Output:
[ "round_eq { avg { all_rows ; points } ; 19.91 }" ]
task210-74fa25e3783d4e15967980436ff8f7b9
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose college record fuzzily matches to ohio state . there is only one such row in the table . the player record of this unqiue row is kirk barton . Output:
[ "and { only { filter_eq { all_rows ; college ; ohio state } } ; eq { hop { filter_eq { all_rows ; college ; ohio state } ; player } ; kirk barton } }" ]
task210-f68e0220d9e443c69782efb6093514ac
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose points record is greater than 90 . there is only one such row in the table . Output:
[ "only { filter_greater { all_rows ; points ; 90 } }" ]
task210-34c511b8e7104af0baf0705100b2013c
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose floors record of all rows is maximum . the name record of this row is kingdom tower . Output:
[ "eq { hop { argmax { all_rows ; floors } ; name } ; kingdom tower }" ]
task210-084410120a5346f18fa667a17baebee9
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose lost record is equal to 14 . there is only one such row in the table . the club record of this unqiue row is burry port rfc . Output:
[ "and { only { filter_eq { all_rows ; lost ; 14 } } ; eq { hop { filter_eq { all_rows ; lost ; 14 } ; club } ; burry port rfc } }" ]
task210-930c8206350d419a85a0126a109707d9
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opponent in the final record fuzzily matches to petra kvitová . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; opponent in the final ; petra kvitová } } ; 3 }" ]
task210-9be171a32de7452ca99371c712090bee
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose silver record is equal to 3 . the number of such rows is 2 . Output:
[ "eq { count { filter_eq { all_rows ; silver ; 3 } } ; 2 }" ]
task210-5b22b2d3581045e3b70d74155d1abcd5
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose surface record fuzzily matches to hard . among these rows , select the rows whose opponent in the final record fuzzily matches to todd martin . there is only one such row in the table . the date record of this unqiue row is 28 february 1993 . Output:
[ "and { only { filter_eq { filter_eq { all_rows ; surface ; hard } ; opponent in the final ; todd martin } } ; eq { hop { filter_eq { filter_eq { all_rows ; surface ; hard } ; opponent in the final ; todd martin } ; date } ; 28 february 1993 } }" ]
task210-442a79049ae34a4189847fec9604a413
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose ship record fuzzily matches to lützow . take the total record of this row . select the rows whose ship record fuzzily matches to seydlitz . take the total record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; ship ; lützow } ; total } ; hop { filter_eq { all_rows ; ship ; seydlitz } ; total } }" ]
task210-2c952e9ead8e4a0da26aa6513d8dd90f
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose the world university rankings 2012 - 13 record is less than 300 . there is only one such row in the table . the university record of this unqiue row is queensland university of technology . Output:
[ "and { only { filter_less { all_rows ; the world university rankings 2012 - 13 ; 300 } } ; eq { hop { filter_less { all_rows ; the world university rankings 2012 - 13 ; 300 } ; university } ; queensland university of technology } }" ]
task210-4df56f830d0f4c3eb5e2bd1686fe3350
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose date record of all rows is 2nd minimum . the winning driver record of this row is arthur duray . Output:
[ "eq { hop { nth_argmin { all_rows ; date ; 2 } ; winning driver } ; arthur duray }" ]
task210-1b85855807de43aebe247d458eabb58a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose result record fuzzily matches to loss . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; result ; loss } } ; 3 }" ]
task210-96e255b625ff47969bc971be9aff876a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose leader at the summit record fuzzily matches to ( usa ) . there is only one such row in the table . Output:
[ "only { filter_eq { all_rows ; leader at the summit ; ( usa ) } }" ]
task210-c1a3f18fe359424e810b693509581c83
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opposing teams record fuzzily matches to scotland . take the against record of this row . select the rows whose opposing teams record fuzzily matches to wales . take the against record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; opposing teams ; scotland } ; against } ; hop { filter_eq { all_rows ; opposing teams ; wales } ; against } }" ]
task210-ed24c0aaadf846d39e880af57493e024
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opponent record fuzzily matches to new england patriots . take the attendance record of this row . select the rows whose opponent record fuzzily matches to cleveland browns . take the attendance record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; opponent ; new england patriots } ; attendance } ; hop { filter_eq { all_rows ; opponent ; cleveland browns } ; attendance } }" ]
task210-8757513af6554187b0c61da0e72f85b0
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the normal total record of all rows is 88 . Output:
[ "round_eq { avg { all_rows ; normal total } ; 88 }" ]
task210-25d98a33a72e4c5184ff7966d709d5a7
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose year record is equal to 2005 . there is only one such row in the table . the group record of this unqiue row is method fest independent film festival . Output:
[ "and { only { filter_eq { all_rows ; year ; 2005 } } ; eq { hop { filter_eq { all_rows ; year ; 2005 } ; group } ; method fest independent film festival } }" ]
task210-b21e4d824a8f49bf82eb01af8702cc4b
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose capacity record of all rows is maximum . the club record of this row is standard liège . Output:
[ "eq { hop { argmax { all_rows ; capacity } ; club } ; standard liège }" ]
task210-d9132fad20204ddabcb1a07a53c90892
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the builder records of all rows , most of them fuzzily match to andrew barclay & co . Output:
[ "most_eq { all_rows ; builder ; andrew barclay & co }" ]
task210-363cf03f43424859b98df5ce2ee2b0d2
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose attendance record of all rows is maximum . the opponent record of this row is new orleans saints . Output:
[ "eq { hop { argmax { all_rows ; attendance } ; opponent } ; new orleans saints }" ]
task210-640412d11f51474c984bcb3ee9bb3e48
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose venue record fuzzily matches to mcg . take the crowd record of this row . select the rows whose venue record fuzzily matches to vfl park . take the crowd record of this row . the first record is greater than the second record . Output:
[ "greater { hop { filter_eq { all_rows ; venue ; mcg } ; crowd } ; hop { filter_eq { all_rows ; venue ; vfl park } ; crowd } }" ]
task210-ffa0909e59be47cea2c6824c4c3e490a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose episode count record of all rows is maximum . the character record of this row is professor leo dalton . Output:
[ "eq { hop { argmax { all_rows ; episode count } ; character } ; professor leo dalton }" ]
task210-cba1b71b56d14ab78855c1ac22bef390
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose attendance record of all rows is maximum . the date record of this row is 19th . Output:
[ "eq { hop { argmax { all_rows ; attendance } ; date } ; 19th }" ]
task210-fcac665a1a504f03963d804e54242027
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the maximum length record of all rows is 136 ' . the name record of the row with superlative length record is fay no 4 . Output:
[ "and { eq { max { all_rows ; length } ; 136 ' } ; eq { hop { argmax { all_rows ; length } ; name } ; fay no 4 } }" ]
task210-af1cbe78943c410a9d632d58e558576a
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the outcome records of all rows , most of them fuzzily match to winner . Output:
[ "most_eq { all_rows ; outcome ; winner }" ]
task210-d41d5208e26b4b5aa3bd5c2f3dd79520
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the country records of all rows , all of them fuzzily match to soviet union . Output:
[ "all_eq { all_rows ; country ; soviet union }" ]
task210-28a06e3d54f94a00bb8da3cd997d59cf
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose country record fuzzily matches to scotland . there is only one such row in the table . the player record of this unqiue row is sandy lyle . Output:
[ "and { only { filter_eq { all_rows ; country ; scotland } } ; eq { hop { filter_eq { all_rows ; country ; scotland } ; player } ; sandy lyle } }" ]
task210-7f84f0f21ec64591bc89007232f02aca
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose region record fuzzily matches to kansai . the number of such rows is 2 . Output:
[ "eq { count { filter_eq { all_rows ; region ; kansai } } ; 2 }" ]
task210-ac69fc3c056544fe9158dd3beb56c927
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose total goals record of all rows is maximum . the name record of this row is billy price . Output:
[ "eq { hop { argmax { all_rows ; total goals } ; name } ; billy price }" ]
task210-97f900ab0a0f4f95af7006640d239577
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose location record fuzzily matches to boston garden . the sum of the score record of these rows is 843 . Output:
[ "round_eq { sum { filter_eq { all_rows ; location ; boston garden } ; score } ; 843 }" ]
task210-79933d70aaa143e38a94536236ca0d46
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose venue record fuzzily matches to trent bridge . there is only one such row in the table . the date record of this unqiue row is 23 , 24 , 25 , 26 , 27 july 1998 . Output:
[ "and { only { filter_eq { all_rows ; venue ; trent bridge } } ; eq { hop { filter_eq { all_rows ; venue ; trent bridge } ; date } ; 23 , 24 , 25 , 26 , 27 july 1998 } }" ]
task210-60f60d8b970d4cb08f042e5b385d7eae
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose incumbent record fuzzily matches to robert l f sikes . take the first elected record of this row . select the rows whose incumbent record fuzzily matches to donald ray matthews . take the first elected record of this row . the first record is less than the second record . Output:
[ "less { hop { filter_eq { all_rows ; incumbent ; robert l f sikes } ; first elected } ; hop { filter_eq { all_rows ; incumbent ; donald ray matthews } ; first elected } }" ]
task210-60ef0821b30c4bafb6ddec0bcc7cd2a1
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose elimination move record fuzzily matches to pinfall after a diving headbutt . there is only one such row in the table . the wrestler record of this unqiue row is zach gowen . Output:
[ "and { only { filter_eq { all_rows ; elimination move ; pinfall after a diving headbutt } } ; eq { hop { filter_eq { all_rows ; elimination move ; pinfall after a diving headbutt } ; wrestler } ; zach gowen } }" ]
task210-ef47d0b4bb93435eaf0f3daff66775d7
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose album record fuzzily matches to lost souls . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; album ; lost souls } } ; 3 }" ]
task210-f5b124faf2af49feaf600d9967e0a05f
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opponent record fuzzily matches to ottawa senators . take the february record of this row . select the rows whose opponent record fuzzily matches to nashville predators . take the february record of this row . the first record is less than the second record . Output:
[ "less { hop { filter_eq { all_rows ; opponent ; ottawa senators } ; february } ; hop { filter_eq { all_rows ; opponent ; nashville predators } ; february } }" ]
task210-227fda376beb4f03bd55536f2fb3cb9b
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose wins record of all rows is 2nd maximum . the team record of this row is cerro porteño . Output:
[ "eq { hop { nth_argmax { all_rows ; wins ; 2 } ; team } ; cerro porteño }" ]
task210-50ecacfaac1147f48252ec1435115300
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose balls record of all rows is maximum . the player record of this row is sanath jayasuriya . Output:
[ "eq { hop { argmax { all_rows ; balls } ; player } ; sanath jayasuriya }" ]
task210-45615f5b90ea430d9433c51382d9d2d8
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose builder record fuzzily matches to north british . take the date record of this row . select the rows whose builder record fuzzily matches to g & swr kilmarnock . take the date record of this row . the first record is less than the second record . Output:
[ "less { hop { filter_eq { all_rows ; builder ; north british } ; date } ; hop { filter_eq { all_rows ; builder ; g & swr kilmarnock } ; date } }" ]
task210-d853896a23b04ee3bd0792b8551633ab
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the result records of all rows , most of them fuzzily match to win . Output:
[ "most_eq { all_rows ; result ; win }" ]
task210-9ff8f1c48fa744d4a9870c77265c2cb1
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose first elected record of all rows is 1st minimum . the district record of this row is texas 1 . Output:
[ "eq { hop { nth_argmin { all_rows ; first elected ; 1 } ; district } ; texas 1 }" ]
task210-d06eb6f40a9b490c8e730810ffb1feb7
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose frequency mhz record of all rows is 3rd maximum . the erp kw record of this row is 3 . Output:
[ "eq { hop { nth_argmax { all_rows ; frequency mhz ; 3 } ; erp kw } ; 3 }" ]
task210-c4270fd29fce4ae780a042703a70eaf4
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose total record of all rows is 2nd maximum . the athlete record of this row is monica pinette . Output:
[ "eq { hop { nth_argmax { all_rows ; total ; 2 } ; athlete } ; monica pinette }" ]
task210-2ad472f5054f447aa1859add2e1aa8ea
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the dominant religion ( 2002 ) records of all rows , all of them fuzzily match to orthodox christianity . Output:
[ "all_eq { all_rows ; dominant religion ( 2002 ) ; orthodox christianity }" ]
task210-92f46fa44bdb41c0b3aa6afc08d938ab
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose votes record is greater than 100000 . among these rows , select the rows whose seats record is greater than 20 . the number of such rows is 3 . Output:
[ "eq { count { filter_greater { filter_greater { all_rows ; votes ; 100000 } ; seats ; 20 } } ; 3 }" ]
task210-e3e49c8bb70b43818c29bff41075ba9c
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose crowd record of all rows is maximum . the venue record of this row is victoria park . Output:
[ "eq { hop { argmax { all_rows ; crowd } ; venue } ; victoria park }" ]
task210-e2b752c94260493b84c21509ee9b7d43
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose position record fuzzily matches to rhp . the number of such rows is 6 . Output:
[ "eq { count { filter_eq { all_rows ; position ; rhp } } ; 6 }" ]
task210-bf8b768a932a4670a429f33c4f5fe6ad
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the 1st minimum date of vacancy record of all rows is 7 sep 2010 . the outgoing head coach record of the row with 1st minimum date of vacancy record is rasoul korbekandi . Output:
[ "and { eq { nth_min { all_rows ; date of vacancy ; 1 } ; 7 sep 2010 } ; eq { hop { nth_argmin { all_rows ; date of vacancy ; 1 } ; outgoing head coach } ; rasoul korbekandi } }" ]
task210-4d4d2a9923a24ee490375f66638edbcd
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose won record of all rows is 2nd maximum . the club record of this row is treorchy rfc . Output:
[ "eq { hop { nth_argmax { all_rows ; won ; 2 } ; club } ; treorchy rfc }" ]
task210-090effa83f434914b232f57f58247f48
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose position record is arbitrary . the number of such rows is 7 . Output:
[ "eq { count { filter_all { all_rows ; position } } ; 7 }" ]
task210-2a05ae58b28449aab1b3850abb2a3e39
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose opponent record fuzzily matches to notre dame . the sum of the total offense record of these rows is 948 . Output:
[ "round_eq { sum { filter_eq { all_rows ; opponent ; notre dame } ; total offense } ; 948 }" ]
task210-1a536d2820b14e82a898236402275227
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose 2011 record fuzzily matches to 2r . the number of such rows is 2 . Output:
[ "eq { count { filter_eq { all_rows ; 2011 ; 2r } } ; 2 }" ]
task210-3cb302781b294d3b9714b0097c599d12
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose equatorial bulge record is greater than 1000 . among these rows , select the rows whose polar diameter record is greater than 100,000 . the number of such rows is 2 . Output:
[ "eq { count { filter_greater { filter_greater { all_rows ; equatorial bulge ; 1000 } ; polar diameter ; 100,000 } } ; 2 }" ]
task210-a75af0cb79b04653be0098c9ac430e67
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the time records of all rows , most of them fuzzily match to 2:15 . . Output:
[ "most_eq { all_rows ; time ; 2:15 . }" ]
task210-ae6b3931afb24d45840b681a6b1f0025
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose player record is arbitrary . the number of such rows is 10 . Output:
[ "eq { count { filter_all { all_rows ; player } } ; 10 }" ]
task210-998326dd4d8d4746a905deb95a4dd5ba
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose school / country record fuzzily matches to southern methodist . there is only one such row in the table . the player record of this unqiue row is jim krebs . Output:
[ "and { only { filter_eq { all_rows ; school / country ; southern methodist } } ; eq { hop { filter_eq { all_rows ; school / country ; southern methodist } ; player } ; jim krebs } }" ]
task210-4c28ea3d209543089149772cfea6b3e6
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose reason record fuzzily matches to death . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; reason ; death } } ; 3 }" ]
task210-cdd01fe6ba8d4a52b40b064255164c53
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the row whose date record of all rows is 1st minimum . the winning driver record of this row is eugenio silvani . Output:
[ "eq { hop { nth_argmin { all_rows ; date ; 1 } ; winning driver } ; eugenio silvani }" ]
task210-d94754c7daa349cf8943d6a5c95ba234
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the leading scorer records of all rows , most of them fuzzily match to lebron james . Output:
[ "most_eq { all_rows ; leading scorer ; lebron james }" ]
task210-cdd5c5d480924139b352b4d0895882b6
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: for the date records of all rows , all of them fuzzily match to 28 august 1954 . Output:
[ "all_eq { all_rows ; date ; 28 august 1954 }" ]
task210-a589d868a8694908a6256f31a0b6d3ed
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose college record fuzzily matches to north carolina . select the row whose height record of these rows is maximum . the player record of this row is jeff lebo . Output:
[ "eq { hop { argmax { filter_eq { all_rows ; college ; north carolina } ; height } ; player } ; jeff lebo }" ]
task210-12aeda120e5f45e788ef52568d32085f
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose joined record is equal to 1996 . among these rows , select the rows whose location record fuzzily matches to tennessee . the number of such rows is 4 . Output:
[ "eq { count { filter_eq { filter_eq { all_rows ; joined ; 1996 } ; location ; tennessee } } ; 4 }" ]
task210-561ed84849eb4c43b5e333da828d0c77
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose venue record fuzzily matches to central . among these rows , select the rows whose capacity record is greater than 5000 . the number of such rows is 2 . Output:
[ "eq { count { filter_greater { filter_eq { all_rows ; venue ; central } ; capacity ; 5000 } } ; 2 }" ]
task210-40027f2db1f440e2a239160c00f2a4de
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the pick record of all rows is 27.8 . Output:
[ "round_eq { avg { all_rows ; pick } ; 27.8 }" ]
task210-efa60a7911e445dd99a21d65dfe46039
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the average of the scored record of all rows is .23 . Output:
[ "round_eq { avg { all_rows ; scored } ; .23 }" ]
task210-3da229226e3744f5812d7e4830a8f4f0
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose winning party / coalition record fuzzily matches to indian national congress . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; winning party / coalition ; indian national congress } } ; 3 }" ]
task210-95a436dd4be54d928e2e9d2b7a10fe4b
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: the 3rd minimum year record of all rows is 2006 . the team record of the row with 3rd minimum year record is rollcentre racing . Output:
[ "and { eq { nth_min { all_rows ; year ; 3 } ; 2006 } ; eq { hop { nth_argmin { all_rows ; year ; 3 } ; team } ; rollcentre racing } }" ]
task210-5f2d672f290642eeabc956de2e444082
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Positive Example 1 - Input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 } Positive Example 2 - Input: select the row whose duration record of all rows is maximum. the actor record of this row is lesley saweard. Output: eq { hop { argmax { all_rows ; duration } ; actor } ; lesley saweard } Negative Example 1 - Input: select the row whose total record of all rows is 3rd maximum . the club record of this row is maidstone united . Output: eq { hop { nth_argmax { all_rows ; total ; 3 } } ; maidstone united } Negative Example 2 - Input: select the row whose goal gain record of all rows is 3rd maximum. the team record of this row is india. Output: eq { hop { nth_argmax { all_rows ; goal gain ; 3 } ; team } ; south china } Now complete the following example - Input: select the rows whose games record is equal to 14 . the number of such rows is 3 . Output:
[ "eq { count { filter_eq { all_rows ; games ; 14 } } ; 3 }" ]
task210-f157d4e9f264402d864c4f03f133b8fa