Pythonでテキストマイニングを行いたいのですが、以下の内容で詰まっています。
◆最終の3行を以下のようにしてあるのですが、
g = Graph(vertex_attrs={"label": vertices, "name": vertices}, \ edges=edges, directed=False) plot(g, vertex_size=30, bbox=(800,800), vertex_color='white')
「Graph」を使うために冒頭でfrom igraph import *
とすると、以下のエラーメッセージが表示されます。
Traceback (most recent call last): File "C:\python\00__test2.py", line 7, in <module> from igraph import * File "C:\python\igraph\__init__.py", line 8, in <module> raise DeprecationWarning("To avoid name collision with the igraph project, " DeprecationWarning: To avoid name collision with the igraph project, this visualization library has been renamed to 'jgraph'. Please upgrade when convenient.
◆そこで、「igraph」を「jgraph」にしろと言っているのかなと思い、from jgraph import *
とすると、以下のエラーメッセージに変わります。
Traceback (most recent call last): File "C:\python\00__test2.py", line 44, in <module> g = Graph(vertex_attrs={"label": vertices, "name": vertices}, \ NameError: name 'Graph' is not defined
◆「i」にしても「j」にしても手詰まりになってしまい、お助けを頂きたく、何卒、よろしくお願いします・・!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/01/07 14:42
2019/01/08 03:26
2019/01/08 03:28
2019/01/08 03:50