SAS Analysis¶
SASFlowChart¶
-
class
SASDocumentation.SASAnalysis.SASFlowChart.SASFlowChart(SASProgram)¶ Bases:
objectSAS FlowChart Class
This class creates a network object based on a SAS program. Isolating data inputs, outputs into a force directed network (displayed by d3.js in html build).
-
SASProgram¶ SASProgram object used to generate network
-
G¶ networkx DiGraph object
-
json¶ String dump of nodes in G DiGraph object
-
addDataNodes(SASObject)¶ Loop over SASObject and add any inputs or outputs into the DiGraph
- Parameters
SASObject (list) – A list of SASObjects that contain SASDataObjects
-
countNodes()¶ Return count of nodes in G the DiGraph object
- Returns
Count of nodes in G the DiGraph object
- Return type
int
-