I have a data.frame with multiple dummy variables. They belong to different categories, say color and shape. So one dummy might be called "red", another "oval" and so on. Eventually I want to plot those categories against each other to find dependencies. To do that, first of all I have to create categorical variables out of several dummy variables. These variables must also be allowed to take on several manifestations at once (e.g. an object might not just have one color, but two or three).
Secondly, I'd like to know if there's a way to combine several dummy variables in one dummy variable, not adding them, but simply showing "1" when there's at least one value ≠ 0.
Thanks for your help!