question,answer,type,columns_used,column_types,sample_answer Are there any trips with a total distance greater than 30 miles?,False,boolean,['trip_distance'],['number[double]'],False Were there any trips that cost more than $100 in total?,False,boolean,['total_amount'],['number[double]'],False Is there any trip with more than 6 passengers?,False,boolean,['passenger_count'],['number[uint8]'],False Did all the trips use a payment type of either 1 or 2?,False,boolean,['payment_type'],['number[uint8]'],True What is the maximum fare amount charged for a trip?,75.25,number,['fare_amount'],['number[double]'],85.0 How many unique pickup locations are in the dataset?,96,number,['PULocationID'],['number[uint16]'],193 What is the average tip amount given by passengers?,2.74,number,['tip_amount'],['number[double]'],1.5 How many trips took place in the airport area?,99807,number,['Airport_fee'],['number[UInt8]'],194 Which payment type is the most common in the dataset?,1,category,['payment_type'],['number[uint8]'],1 Which vendor has the most trips recorded?,2,category,['VendorID'],['number[uint8]'],2 What is the most common drop-off location?,236,category,['DOLocationID'],['number[uint16]'],161 On which date did the first recorded trip occur?,2023-01-31,category,['tpep_pickup_datetime'],"['date[ns, UTC]']",2019-01-01 00:46:40 Which are the top 3 most frequent pickup locations?,"[161, 237, 236]",list[category],['PULocationID'],['number[uint16]'],"[237, 236, 161]" Name the 4 most common rate codes used.,"[1, 2, 5, 4]",list[category],['RatecodeID'],['number[uint8]'],"[1, 2, 5, 3]" list the 2 most frequent store and forward flags.,"['N', 'Y']",list[category],['store_and_fwd_flag'],['category'],"['N', 'Y']" Identify the top 4 payment types used by frequency,"[1, 2, 4, 3]",list[category],['payment_type'],['number[uint8]'],"[1, 2, 3]" Report the 4 highest toll amounts paid.,"[0, 0, 0, 0]",list[number],['tolls_amount'],['number[uint8]'],"[0, 0, 0, 0]" list the top 3 longest trip distances,"[19.83, 19.74, 19.68]",list[number],['trip_distance'],['number[double]'],"[8.32, 5.93, 2.8]" Identify the 5 largest total amounts paid for trips.,"[80.0, 80.0, 80.0, 80.0, 79.55]",list[number],['total_amount'],['number[double]'],"[45.8, 39.9, 33.2, 25.2, 24.87]" Report the 6 highest fare amounts charged.,"[75.25, 74.4, 73.0, 73.0, 73.0, 73.0]",list[number],['fare_amount'],['number[double]'],"[40.8, 28.9, 21.2, 17.0, 14.9, 13.5]"