I am trying to combine my csv file in R studio. There is one column with the different data type. I use mutate function to convert it. After that, my bind_rows still having error, could someone help?
Thank a lot!
I am trying to combine my csv file in R studio. There is one column with the different data type. I use mutate function to convert it. After that, my bind_rows still having error, could someone help?
Thank a lot!
You’re on the right track! It appears your first mutate() function successfully adjusts the data type to match the rest of your data frames for the start_station_id.
The error you receive let’s you know that the row bind fails on a different column (almost certainly for the same issue) this time with end_station_id. Adding an extra mutate the same way you did above will fix that column as well.
Good luck!
Thank you so much, I overlook that "end". I am able to combine the file already.
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.