Crashing Message

Welcome to the forum.

It really would help to have more of your code and some sample data , see below. but it looks like you have data in different types. That is what what
! Can't combine ..1$ride_id and ..3$ride_id .
is telling you. ..1$ride_idis numeric and ``..3$ride_id` is character and you cannot do an rbind on different types.

A handy way to supply some sample data is the dput() function. In the case of a large dataset something like dput(head(mydata, 100)) should supply the data we need. Just do dput(mydata) where mydata is your data. Copy the output and paste it here.