I am a newbie in r. I have a set of data about online videos and their tags. The data looks like
film  tag1 tag2 tag3 tag4....
1      A    B    C    D
2      A    C    F    G 
3      B    D    C    X 
I want to create a matrix which tells me the co-occurrence of the tags, such as:
       A    B   C    D .....
A     10    13
B     15    2
C      3    16
D     9     20
How should I do it?
 
    