| coocur | R Documentation | 
A coocurrence object consists of a matrix with the number of ocurrences in its main diagonal and the number of coocurrences outside this diagonal. Besides, this object has two attributes: 1) n is the total of the sum of the ocurrences in each row.2) m is the sum of the maximum number of ocurrences in each row.
coocur(ocurrences, minimum = 1, maximum = Inf,
       sort = FALSE, decreasing = TRUE)
ocurrences | 
 an ocurrence matrix or data frame  | 
minimum | 
 minimum frequency to be considered  | 
maximum | 
 maximum frequency to be considered  | 
sort | 
 sort the coincidence matrix according to frequency of events  | 
decreasing | 
 decreasing or increasing sort of the matrix  | 
Produce a matrix of coocurrences from a matrix of occurences.
An object of cooc class with a coocurrence matrix. It has two attributes:
n | 
 Total sum of occurences)  | 
m | 
 Sum of maximum occurences in each row of the ocurrence matrix  | 
Modesto Escobar, Department of Sociology and Communication, University of Salamanca. See https://sociocav.usal.es/blog/modesto-escobar/
## Tossing two coins five times.
D<-data.frame(Head=c(2,1,1,0,2),Tail=c(0,1,1,2,0))
coocur(D)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.