I Have three vectors. Each vector stating list of participants have that disease.
A.Cancer= c(Part1,Part2,Part3,Part4)
B.Cancer= c(Part3,Part2,Part5,Part6)
C.Cancer=c(Part1,Part7,Part8,Part9,Part10)
I want to combine them in a way that no repetition.I want output like.
Cancer_Disease=(Part1,Part2,Part3,Part4,Part5,Part6,Part7,Part8,Part9,Part10)
How to do this in R?