我想使用python笔记本,igraph包绘制图片,示例代码在这里(我认为是对的)
!pip install cairocffi
import cairocffi as cairo
corlor = []
for i in g.vs['name']:
if set([i]) < set(degree_15):
corlor.append('red')
elif set([i]) < set(degree_30):
corlor.append('rgba(255,0,0,0.5)')
elif set([i]) < set(degree_60):
corlor.append('orange')
else:
corlor.append('yellow')
ig.plot(g,
#'C:\Users\Vincent Du\Desktop\degree_plot.jpg',
layout=geometry_layout,
vertex_label=g.vs['name'],
scale=1.0,
vertex_color=corlor,
vertex_frame_width=0.5,
edge_width=0.05,
vertex_label_size=ig.rescale(g.degree(),out_range=(1,12)),
vertex_size=ig.rescale(g.degree(),out_range=(5,25)),
bbox=(1200,800),
margin = 10,
)
还有一个错误。我不知道如何解决这个问题,谢谢!
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-120-73eb4de82dd4> in <module>()
21 vertex_size=ig.rescale(g.degree(),out_range=(5,25)),
22 bbox=(1200,800),
---> 23 margin = 10,
24 )
//anaconda/lib/python3.5/site-packages/igraph/drawing/__init__.py in plot(obj, target, bbox, *args, **kwds)
444 bbox = BoundingBox(bbox)
445
--> 446 result = Plot(target, bbox, background=kwds.get("background", "white"))
447
448 if "margin" in kwds:
//anaconda/lib/python3.5/site-packages/igraph/drawing/__init__.py in __init__(self, target, bbox, palette, background)
115 """
116 self._filename = None
--> 117 self._surface_was_created = not isinstance(target, cairo.Surface)
118 self._need_tmpfile = False
119
//anaconda/lib/python3.5/site-packages/igraph/drawing/utils.py in __getattr__(self, _)
394
395 def __getattr__(self, _):
--> 396 raise TypeError("plotting not available")
397 def __call__(self, _):
398 raise TypeError("plotting not available")
TypeError: plotting not available
我想我已经安装了cairo,但它仍无法正常工作
答案 0 :(得分:0)
Python 3.7 venv:
(/home/victoria/venv/py37)$ python
Python 3.7.3 (default, Mar 26 2019, 21:43:19)
[GCC 8.2.1 20181127] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from igraph import *
>>> g = Graph.Famous("petersen")
>>> plot(g)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
...
TypeError: plotting not available
(/home/victoria/venv/py37)$ pip install cairocffi
...
Successfully installed cairocffi-1.0.2 cffi-1.12.3 pycparser-2.19
现在绘制(忽略警告):
(/home/victoria/venv/py37)$ python
Python 3.7.3 (default, Mar 26 2019, 21:43:19)
[GCC 8.2.1 20181127] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from igraph import *
>>> g = Graph.Famous("petersen")
>>> plot(g)
(gthumb:31636): Gtk-WARNING **: 14:43:58.342: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "RegisterClient" with signature "ss" on interface "org.xfce.Session.Manager" doesn't exist
<igraph.drawing.Plot object at 0x7f1810e36e80>
>>>
结果:
答案 1 :(得分:0)
如果您使用Windows,则很可能是您下载了wheel并从Unofficial Windows Binaries安装了python-igraph
。使用以下方法对我来说非常合适:
pip install python_igraph-0.7.1.post6-cp37-cp37m-win_amd64.whl
但是,绘图对我也不起作用,因为我既没有安装pycairo
也没有安装cairocffi
。另外,pip install pycairo
和pip install cairocffi
都不对我有用。我花了很多时间才知道需要下载pycairo
的滚轮并使用
pip install pycairo-1.19.0-cp37-cp37m-win_amd64.whl
经验教训。
答案 2 :(得分:-1)
我不知道你的ig.plot()究竟是什么数据类型,但是&#34; TypeError&#34;建议,你的一些args有错误的数据类型。 而且似乎你正在使用Python3,它应该是pip3而不是pip。 希望这会对你有所帮助。