idProperty | R Documentation |
This function returns the name of the property, if an aspect uses IDs for its elements. As example, the aspect NodesAspect has the property id that represents the IDs of the aspect.
idProperty(aspect) ## Default S3 method: idProperty(aspect) ## S3 method for class 'NodesAspect' idProperty(aspect) ## S3 method for class 'EdgesAspect' idProperty(aspect) ## S3 method for class 'CyGroupsAspect' idProperty(aspect) ## S3 method for class 'CySubNetworksAspect' idProperty(aspect)
aspect |
an object of one of the aspect classes (e.g. NodesAspect, EdgesAspect, etc.) |
By default aspects don't have IDs, so only the implemented classes have IDs. Aspects with IDs will be considered in the meta-data aspect to determine properties like: idCounter and elementCount.
Uses method dispatch, so the default return is NULL and only aspect classes with IDs are implemented. This way it is easier to extend the data model.
character; Name of the ID property or NULL
hasIds()
, refersTo()
, referredBy()
, maxId()
edges = createEdges(source = c(0,0), target = c(1,2)) idProperty(edges)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.