Exports a network to the Pajek file format to visualize transition trajectories. For more information on Pajek, please refer to http://mrvar.fdv.uni-lj.si/pajek/
1.1
stateGraph: An object of class AttractorInfo or SymbolicSimulation, as returned by getAttractors and simulateSymbolicModel respectively. As the transition table information in this structure is required, getAttractors must be called in synchronous mode and with returnTable set to TRUE. Similarly, simulateSymbolicModel must be called with returnGraph=TRUE. Alternatively, stateGraph can be an object of class TransitionTable, which can be extracted using the functions getTransitionTable, getBasinOfAttraction, or getStateSummary .
file: The name of the output file for Pajek. Defaults to "boolean.net".
includeLabels: If set to true, the vertices of the graph in the output file are labeled with the binary encodings of the states. Defaults to FALSE.
...: This is only for compatibility with previous versions and should not be used.
## Not run:# load example datadata(cellcycle)# get attractorsattractors <- getAttractors(cellcycle)# export to PajektoPajek(attractors, file="pajek_export.net")## End(Not run)