I'm currently working on my data analytics bike-share capstone project and I've had some trouble searching for a way to do this, I'm probably wording this incorrectly but I'll try and explain it.
I'm working with a dataset of 13 rows that contains 4 of the following: start_station_name, start_station_id, start_lat and end_lng.
There are a bunch of missing info on those columns, but we have the data to deduce most of what the info is in order to salvage the data for the sake of cleaning (learning), so here is the question:
I was thinking of running something like:
IF start_lat = known_number_1 and start_lng = known_number_2 THEN mutate start_station_name = X and start_station_id = Y
is there any way to do something like this? Where should I look for info regarding it?