Bind_rows error

Guys I am all out of ideas here I am trying to bind the rows from four different tables but I keep getting:
Error: Can't combine ..3$started_at <datetime> and ..4$started_at .

I then added a mutate function to the tables
q3_2019 <- mutate(q3_2019, ride_id = as.character(ride_id)
,rideable_type = as.character(rideable_type)
,started_at = as.character(started_at))
q2_2019 <- mutate(q2_2019, ride_id = as.character(ride_id)
,rideable_type = as.character(rideable_type)
,started_at = as.character(started_at))
q4_2019 <- mutate(q4_2019, ride_id = as.character(ride_id)
,rideable_type = as.character(rideable_type)
, started_at = as.character(started_at))

Then it returned the same error again. Any advice would be greatly appreciated

See the FAQ: How to do a minimal reproducible example reprex for beginners to attract answers—easier if the problem doesn't have to be reverse engineered.

1 Like

Very helpful. Thank you so much

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.