Ranks the values of the leading left singular vector of the graph adjacency matrix plots the first SngVals on a log-log chart. The function creates three new files: 1) sngVecL.<FNmPref>.plt (the plot), 2) sngVecL.<FNPref>.eps (the plotting description), and 3) sngVecL.<FNmPref>.tab (the tab separated plotting data).
Parameters:
A Snap.py directed graph.
A string representing the preferred output file name.
Description of the graph. The string should be non-empty.
Return value:
The following example shows how to use PlotSngVec() for TNGraph:
import snap
Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
snap.PlotSngVec(Graph, "my_filename", "my_chart_title")