Description Usage Arguments Value Examples
modify.concepts
modifes the list of concepts according to a given list.
This includes removing concepts and adjacent propositions as well as adding (unconnected) concepts.
1 2 | ## S3 method for class 'conceptmap'
modify.concepts(x, concept.list, ...)
|
x |
A conceptmap object. |
concept.list |
A vector of strings that contains the list of concepts. |
... |
- |
A conceptmap object that encompasses exactly the concepts of concept.list
.
Concepts not originally in map
are added as isolated nodes/concepts. Concepts of map
that are not in concept.list
are removed together with their adjacent propositions.
1 2 3 | data = rbind(cbind("Object", "Class", "is instance of"), cbind("Class", "Attribute", "has"))
cm = conceptmap(data)
modify.concepts(cm, c("Object", "Class", "Method"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.