> dd = g.degree_distribution()
> dd.__plot__("dd",(800,800),None)__plot__ is an internal function; you are not supposed to call it directly. Call the plot() function instead: >>> dd = g.degree_distribution() >>> plot(dd) or, if the plot is not shown automatically, then: >>> plot(dd).show() T. _______________________________________________ igraph-help mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/igraph-help
