Hello Everyone,
I have a set of data which looks like:
A B C D
0 674893.0333 0 937.8
34 674893.0126 1 937.8
68 674892.9102 2 937.8
102 674893.0206 3 937.8
136 674893.0039 4 937.8
170 674892.9208 5 937.8
216 674892.8587 6 937.8
250 674892.9476 7 937.8
284 674892.752 8 937.8
....
Where columns A and B are one data set and C and D are another. A and C are the indexes. I would like to filter the second set of data such that the indexes of both sets match. so the result would look something like:
A B C D
0 674893.0333 0 937.8
34 674893.0126 34 937.8
68 674892.9102 68 937.8
102 674893.0206 102 937.8
136 674893.0039 136 937.8
Hope this makes sense!
Cheers!
Bookmarks