Learn R Programming

archeofrag (version 1.2.0)

make_sr_graph: Make a "similarity" relationships graph.

Description

Takes a frag.object and returns an undirected graph representing the "similarity" relationships between archaeological fragments. A "similarity" relationship between fragments is defined if there is an acceptable likelihood that those fragments were part of the same object.

Usage

make_sr_graph(object)

Value

An undirected igraph class graph. The "frag_type" graph attribute is set with the "similarity" character value.

Arguments

object

A frag.object object.

Author

Sebastien Plutniak <sebastien.plutniak at posteo.net>

Details

Returns an undirected graph of "igraph" class. The "fragments" data frame of the frag.object is used to set the vertices attributes.

See Also

make_frag_object

Examples

Run this code
sr.df <- matrix( c(1,1, 9,1, 10,1, 11,2, 12,2, 13,2), ncol=2, byrow=TRUE)
fragments.df <- data.frame(1:13, letters[1:13]) 
crsr_g <- make_frag_object(sr=sr.df, fragments=fragments.df)
make_sr_graph(crsr_g)

Run the code above in your browser using DataLab