I have two datasets: A and B
Dataset A:
indiv_id January 1000068000004 1 1000068000011 1 1000068000012 1 Dataset B:
indiv_id March 1000068000003 1 1000068000011 1 1000068000015 1 Desired Result:
Indiv_id January March 1000068000003 null 1 1000068000004 1 null 1000068000011 1 1 1000068000012 1 null 1000068000015 null 1 How do I join the tables so that I have all of the Indiv_IDs from BOTH lists and their values in the column that is distinct to their particular dataset?
Thanks