merge.conceptmaps: Unify sets of conceptmaps

Description Usage Arguments Value Examples

Description

merge takes two conceptsmaps objects and merges the underyling sets of conceptmaps.

Usage

1
2
## S3 method for class 'conceptmaps'
merge(x, y, ...)

Arguments

x

A conceptmaps object.

y

A conceptmaps object.

...

-

Value

A conceptmaps object that consist of the maps of x and y.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 data = rbind(
 cbind("1", "Object", "Class", "is instance of"),
 cbind("1", "Object", "Attribute", "has"),
 cbind("2", "Class", "Attribute", "possesses"),
 cbind("2", "Attribute", "Data-type", "has"),
 cbind("3", "Object", "Class", "is instance of")
 )
 cm1 = conceptmaps(data[1:2,])
 cm2 = conceptmaps(data[3:5,])
 merge(cm1, cm2)

comato documentation built on May 2, 2019, 6:52 a.m.