oaqc: Calculates the orbit-aware quad census on an edge and node...

View source: R/oaqc.R

oaqcR Documentation

Calculates the orbit-aware quad census on an edge and node level, see vignette('oaqc').

Description

Calculates the orbit-aware quad census on an edge and node level, see vignette('oaqc').

Usage

oaqc(graph, non_ind_freq = F, file = "")

Arguments

graph

A matrix, data.frame or graph object.

non_ind_freq

A flag indicating whether non-induced frequencies have to be returned or not.

file

Name (and location) of the file to be written.

Value

orbit-aware quad census on a node and edge level. Consult vignette('oaqc') to see the correspondence between orbit and quad.

Examples

k4 <- data.frame(
    source = c(0, 0, 0, 1, 1, 2),
    target = c(1, 2, 3, 2, 3, 3)
)

k4orbits <- oaqc(k4, non_ind_freq = TRUE)
print(k4orbits)

schochastics/smglr documentation built on Sept. 29, 2024, 10:26 a.m.