Netica defines a node set functionality which Adds a collection of labels (sets) to each node Defines a collection of nodes with that label Netica GUI really only offers the opportunity to color nodes by set RNetica can loop over node sets (lists of nodes)
## Node Sets
NetworkNodeSets(motif1)
## [1] "Observables" "Proficiencies"
NetworkNodesInSet(motif1,"Proficiencies")
## $RecursiveRuleGeometric
## Discrete Netica Node named RecursiveRuleGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $ExplicitGeometric
## Discrete Netica Node named ExplicitGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $VerbalRuleGeometric
## Discrete Netica Node named VerbalRuleGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $AlgebraRuleGeometric
## Discrete Netica Node named AlgebraRuleGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $InduceRulesGeometric
## Discrete Netica Node named InduceRulesGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $TableGeometric
## Discrete Netica Node named TableGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $VisualGeometric
## Discrete Netica Node named VisualGeometric in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $CommonRatio
## Discrete Netica Node named CommonRatio in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
##
## $SolveGeometricProblems
## Discrete Netica Node named SolveGeometricProblems in network GeometricMotif
## Node is currently active.
## States are: High, Medium, Low
NodeSets(m1.sgp)
## [1] "Proficiencies"
## These are all settable
NodeSets(m1.sgp) <- c(NodeSets(m1.sgp),"HighLevel")
NodeSets(m1.sgp)
## [1] "HighLevel" "Proficiencies"