Hi,
My data structure as below:
My task is to find out which values of var2 and var3 do not appears in var1, within subgroups. For example, value "248" in group 1, "234" in group 2, "235" and "259" are the values of concerned. How to find these values?
Thank you!
My data structure as below:
groupid | var1 | var2 | var3 |
1 | 256 | 123 | 123 |
1 | 123 | 248 | |
1 | 125 | 123 | |
2 | 125 | 231 | 235 |
2 | 231 | 234 | |
2 | 245 | 231 | |
2 | 254 | 234 | |
2 | 248 | ||
3 | 124 | 147 | 147 |
3 | 147 | 9400 | |
3 | 9400 | 235 | |
3 | 2114 | 259 | |
3 | 214 |
My task is to find out which values of var2 and var3 do not appears in var1, within subgroups. For example, value "248" in group 1, "234" in group 2, "235" and "259" are the values of concerned. How to find these values?
Thank you!
Comment