Using R I plot the following scatter plot:
And here we can see positive linear association between two variables. There is moderate positive correlation is seen. As trip distance increases taxis fare also increases. Also using R I calculate the correlation cor(taxi$trip_distance, taxi$fare_amount) and I obtained the following result: [1] 0.8916025
Based on your answer, how correlated is trip distance and fare amount? Does this make sense?