I have a dataset which has tree measurements at time t1 and t2. These trees are identified by state, county, plot and tree number. There are some trees that have died in the time interval between t1 and t2.
State County Plot Tree Meas_yr
1 9 1 1 t1
1 9 1 2 t1
1 9 1 3 t1
1 9 1 1 t2
1 9 1 2 t2
I am trying to create a binary label which gives 1 to trees if they are present in both t1 and t2 and 0 to trees if they are present in t1 but not present in t2. I am hoping to create something like this.
State County Plot Tree Meas_yr tree_survival
1 9 1 1 t1 1
1 9 1 2 t1 1
1 9 1 3 t1 0
1 9 1 1 t2 1
1 9 1 2 t2 1
I would really appreciate the help. Thanks in advance.
Edit: I have a follow up question. Similar to the dataset above, there are new trees that have grown in time t2 which were not present in time t1. How do I create another label where the trees that are only present in t2 is 1 and others are zero.