Hello team,
I am trying to summarise some categorical data and am struggling. Your help would be greatly appreciated!
I want to create summary statistics and (if possible graphs) for different combinations of the variables.
E.g. in the mock code bellow, how many participants said yes (Y) to both X, Y and Z vs just X...
There are a lot of columns in the real data set, so the less manual re-coding the better!
And any tips on visualisation would be awesome:)
I hope this is not to long a winded QU to ask. Iv been staying at the computer for a long time.
Thank you!!!
id <- c("A","B","C","D")
x <- sample(c("N","Y"), 4, replace = TRUE)
y <- sample(c("N","Y"), 4, replace = TRUE)
z <- sample(c("N","Y"), 4, replace = TRUE)
data.frame(id,x,y,z)