Description Usage Arguments Value Examples
merge
takes two conceptsmaps objects and merges the underyling sets of conceptmaps.
1 2 |
x |
A conceptmaps object. |
y |
A conceptmaps object. |
... |
- |
A conceptmaps object that consist of the maps of x
and y
.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.