[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [igraph] how to plot degree distribution, please?
From: |
Tamas Nepusz |
Subject: |
Re: [igraph] how to plot degree distribution, please? |
Date: |
Sat, 17 Sep 2016 21:45:52 +0200 |
> 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.