Texts: Use the Pandas package to import the 1,000 lines of taxi data from the taxi_1000.csv file and calculate the total of all fares, the average of those fares, and the maximum trip distance (based on the Trip Miles field) for records that have fares greater than 10 dollars. Hint: Use the Pandas .query() method to create a new DataFrame with only records that have fares greater than 10 dollars before performing the calculations. Reference: Introduction to Python Programming for Business and Social Science Applications, ISBN: 9781544377483, 1544377487.