Description Usage Arguments Value Examples
conceptmaps
creates a conceptmaps object from a list of conceptmap objects.
1 2 | ## S3 method for class 'list'
conceptmaps(x, filter = T, ...)
|
x |
A list of conceptmap objects. |
filter |
If TRUE, empty concept maps (i.e. concept maps without any proposition) are not contained in the resulting set. |
... |
- |
A conceptmaps object.
1 2 3 4 5 6 7 8 | #Create concept maps from three random graphs
require("igraph")
g1 = set.vertex.attribute(erdos.renyi.game(5, 0.7, type="gnp"), "name", value=1:5)
g2 = set.vertex.attribute(erdos.renyi.game(5, 0.7, type="gnp"), "name", value=1:5)
g3 = set.vertex.attribute(erdos.renyi.game(5, 0.7, type="gnp"), "name", value=1:5)
#Create conceptmaps object from three conceptmap objects
simple_cms = conceptmaps(list(conceptmap(g1), conceptmap(g2), conceptmap(g3)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.