Given below are few observations from my data set
structure(list(p1 = c(1L, 0L, 0L, 0L, 0L, 1L, 0L, 1L, 1L, 0L),
p2 = c(1L, 0L, 1L, 1L, 1L, 0L, 0L, 0L, 1L, 0L), p3 = c(1L,
1L, 1L, 1L, 1L, 1L, 1L, 0L, 0L, 0L), p4 = c(1L, 1L, 1L, 1L,
1L, 0L, 1L, 0L, 0L, 0L)), .Names = c("p1", "p2", "p3", "p4"
), row.names = c(NA, -10L), class = "data.frame")
The column name depict a type of skill in a project required by 1 in front of that project row. I want to create a common basket of skills which occur together for maximum number of projects. Is there any way of doing market basket analysis on the given data in R? Or any way to solve the above problem.
Check out the
arules
package: