- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用 networkx 创建一个图形,到目前为止,我已经从以下文本文件创建了节点:文件 1(user_id.txt) 示例数据:
user_000001
user_000002
user_000003
user_000004
user_000005
user_000006
user_000007
文件 2(user_country.txt) 样本数据:如果用户没有输入他的国家详细信息,也包含一些空行
Japan
Peru
United States
Bulgaria
Russian Federation
United States
文件 3(user_agegroup.txt) 数据:包含四个年龄段
[12-18],[19-25],[26-32],[33-39]
我还有另外两个文件,其中包含用于在图中添加边的示例数据
文件 4(id,agegroup.txt)
user_000001,[19-25]
user_000002,[19-25]
user_000003,[33-39]
user_000004,[19-25]
user_000005,[19-25]
user_000006,[19-25]
user_000007,[26-32]
文件5(id,country.txt)
(user_000001,Japan)
(user_000002,Peru)
(user_000003,United States)
(user_000004,)
(user_000005,Bulgaria)
(user_000006,Russian Federation)
(user_000007,United States)
到目前为止,我已经编写了以下代码来绘制仅包含节点的图形:(请检查代码,因为 print g.number_of_nodes()
从不打印正确的号码。尽管 print g.nodes()
显示正确的节点数。节点数。)
import csv
import networkx as nx
import matplotlib.pyplot as plt
g=nx.Graph()
#extract and add AGE_GROUP nodes in graph
f1 = csv.reader(open("user_agegroup.txt","rb"))
for row in f1:
g.add_nodes_from(row)
nx.draw_circular(g,node_color='blue')
#extract and add COUNTRY nodes in graph
f2 = csv.reader(open('user_country.txt','rb'))
for row in f2:
g.add_nodes_from(row)
nx.draw_circular(g,node_color='red')
#extract and add USER_ID nodes in graph
f3 = csv.reader(open('user_id.txt','rb'))
for row in f3:
g.add_nodes_from(row)
nx.draw_random(g,node_color='yellow')
print g.nodes()
plt.savefig("path.png")
print g.number_of_nodes()
plt.show()
除此之外,我不知道如何从 file4 和 file5 添加边。对此代码的任何帮助表示赞赏。谢谢。
最佳答案
为了简化,我在 user_id.txt 和 id,country.txt 文件中制作了用户 ID 的 [1,2,3,4,5,6,7]。你的代码有一些问题:
1- 首先向图形添加一些节点(例如从 user_id.txt 文件),然后绘制它,然后从另一个文件向图形添加一些其他节点,然后再次重新绘制整个图形同一个数字。所以,最后你在一张图中有很多图。
2- 您使用 draw_circular 方法绘制了两次,这就是为什么蓝色节点从未出现,因为它们被“红色”节点覆盖了。
我对你的代码做了一些修改,最后只画了一次。为了绘制具有所需颜色的节点,我在添加节点时添加了一个名为 colors 的属性。然后我使用这个属性构建了一个颜色图,并将其发送到 draw_networkx 函数。最后,由于 id,country.txt 中的空字段,添加边有点棘手,所以我必须在创建图形之前删除空节点。这是代码和后面出现的图。
G=nx.Graph()
#extract and add AGE_GROUP nodes in graph
f1 = csv.reader(open("user_agegroup.txt","rb"))
for row in f1:
G.add_nodes_from(row, color = 'blue')
#extract and add COUNTRY nodes in graph
f2 = csv.reader(open('user_country.txt','rb'))
for row in f2:
G.add_nodes_from(row, color = 'red')
#extract and add USER_ID nodes in graph
f3 = csv.reader(open('user_id.txt','rb'))
for row in f3:
G.add_nodes_from(row, color = 'yellow')
f4 = csv.reader(open('id,agegroup.txt','rb'))
for row in f4:
if len(row) == 2 : # add an edge only if both values are provided
G.add_edge(row[0],row[1])
f5 = csv.reader(open('id,country.txt','rb'))
for row in f5:
if len(row) == 2 : # add an edge only if both values are provided
G.add_edge(row[0],row[1])
# Remove empty nodes
for n in G.nodes():
if n == '':
G.remove_node(n)
# color nodes according to their color attribute
color_map = []
for n in G.nodes():
color_map.append(G.node[n]['color'])
nx.draw_networkx(G, node_color = color_map, with_labels = True, node_size = 500)
plt.savefig("path.png")
plt.show()
关于python - 网络x : How to create graph edges from a csv file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33428577/
我对这两个概念感到困惑:In-graph replication和 Between-graph replication阅读 Replicated training 时在 tensorflow 的官方
我对这两个概念感到困惑:In-graph replication和 Between-graph replication阅读 Replicated training 时在 tensorflow 的官方
我正在尝试使用 https://graph.windows.net/{teantId}/users/[email protected]/thumbnailPhoto?api-version=1.6 访
我正在尝试使用 Graphs.jl 模块从 Julia 中的图中获取子图。我有图,并将其顶点和边存储到列表中,然后我的算法在该列表中移动并删除不属于新子图的节点和边。到这一部分,一切正常,在整个算法之
我是 Arangodb 的新手。我对使用哪个图形 API 感到困惑。我可以在 http://localhost:8529/ url 看到一张图。官方视频讨论了 Gremlin(我也安装了它)。然后就是
截至今天,文档建议使用 Microsoft Graph 而不是 Azure AD Graph API 来访问 Azure AD/B2C 资源。 之前,通过 Azure AD Graph API,我们可
我们希望将 .NET 应用从使用 Azure AD Graph 迁移到 Microsoft Graph API。目前我们正在使用包 Microsoft.WindowsAzure.Configurati
也许我遗漏了什么,但我不知道为什么 GraphQL 的标题中有 graph。 我猜这与 Graph Theory 有关和 graph并且可以看到某种联系,但如果有人能用简单的术语解释它就太好了。 最佳
我正在尝试使用API使用户的Facebook Pages具有已关联的Instagram企业帐户: https://graph.facebook.com/v2.7/me/accounts?field
如何导出我通过调用 GraphPlot 获得的输出的调整大小版本 (或 TreePlot 如果它们产生不同的输出)到 jpg 文件? 目前,我只是调用 Export[file_name, G]在哪里
如何在使用 gremlin 查询创建边缘之前检查边缘是否已存在?如何更新现有边缘而不是删除并重新创建? 最佳答案 我不确定您是否还在寻找答案;然而,简单的答案是 Cosmos DB 在 Gremlin
我使用的是 Xcode 10.2.1 和 macOS Catalina Developer Beta 2。每当我尝试使用内存图调试器时,我都会收到此错误: Memory Graph Debugger:
我正在设置一个机器人以在Facebook页面上自动发布。但是,当我运行脚本时,图形API会引发以下错误: Graph returned an error: (#200) Requires either
如何制定包含非英语字符(例如日耳曼语Umlauts)的Microsoft Graph /myOrganization/users OData查询? 例子: 我的租户中有一个名为“ThomasMülle
我正在寻找发布目标帖子时可以与Facebook Graph API一起使用的国家/州/城市列表。 我在this页面上找到了一个JSON文件,但是该文件无法正确解析,我也怀疑它是否可以用于发布目标,因为
关于 Graph API,帖子的分享数、帖子见解的分享数和页面上显示的分享数不相同。我假设这些代表相同的计数。我的假设错了吗? 来自帖子: https://graph.facebook.com/XXX
我正在尝试访问作为嵌套子站点一部分的列表的项目,如下所示: https://{mytenant}.sharepoint.com/ vendorSiteCollection/ v
我打算开发一个应用程序,但开发人员告诉我每个 IP 每 600 秒有 600 次调用的限制。该应用程序有很多场景,这还不够。有没有办法以某种方式增加限制?或者 Facebook 是否提供任何高级帐户或
我在 Neo4j 中创建了一张伦敦地铁 map 。站点通过 :CONNECTED_TO 关系连接,时间值表示停止之间需要多长时间(目前这些是我为测试输入的随机值)。位于多条线路上的车站每条线路都有一个
我正在尝试拉回所有用户的列表,我的预期结果将是大约 20,000 个用户。 图表似乎将我限制为 1000。 图调用https://graph.microsoft.com/v1.0/users返回 10
我是一名优秀的程序员,十分优秀!