Hi, thank you for your response! I can't share the actual data but I recreated some fake data that still resembles what I want to do. As for the code, I wasn't even sure what something like this would be called and I couldn't find anything close when I tried searching myself, so I don't have example code I've been using. This is my first time trying to add data, so let me know if I messed up.
tibble::tribble(
~`Removal.Reason.-.Voluntary`, ~`Removal.Reason.-.Involuntary`, ~`Removal.Reason.-.Other`,
0L, 0L, 0L,
1L, 0L, 0L,
0L, 1L, 0L,
0L, 0L, 1L,
0L, 1L, 0L,
1L, 0L, 0L,
0L, 1L, 0L,
0L, 0L, 1L,
0L, 1L, 0L,
1L, 0L, 0L,
0L, 1L, 0L,
0L, 0L, 1L,
0L, 1L, 0L,
1L, 0L, 0L,
0L, 1L, 0L,
0L, 0L, 1L,
0L, 1L, 0L,
1L, 0L, 0L,
0L, 1L, 0L
)