Lets say I have duplicates. And both sets of duplicates provide important information. Meaning one of the observations gives me some important information that the other does not have. I would like to combine them. How would i go about it?
I want it to be
Additionally I have other variables which i have not included which is are just perfect duplicates and I can keep either observations.
student_id | cohort | absent | enrolled | suspesnion |
0001 | 7 | 3 | 4 | . |
0001 | 7 | . | . | 6 |
student_id | cohort | absent | enrolled | suspesnion |
0001 | 7 | 3 | 4 | 6 |
Additionally I have other variables which i have not included which is are just perfect duplicates and I can keep either observations.
Comment