- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个名为“loc”的 11x11 数据框,其中包含节点的位置坐标(X、Y 和 Z),并以节点名称作为索引。我有另一个数据框“dist”,其中包含节点之间的距离,而列标题和索引上都包含节点名称。我想绘制网络图,以便每个节点都标有其名称(loc 的索引)。此外,每个节点都应该连接到所有其他节点。
但是我希望每条边都标有两个节点之间的距离。我
我已经创建了图表,用标签绘制了节点并在它们之间绘制了边。但是无法为图例绘制标签。
##### Example data similar to my actual data
coord = np.random.randint(low=1, high=100, size=(11,3))
lab = ['AP', 'STA1', 'STA2', 'STA3', 'STA4', 'STA5', 'STA6', 'STA7',
'STA8', 'STA9', 'STA10']
loc = pd.DataFrame.from_records(coord, columns=['X', 'Y', 'Z'],
index=lab)
d = distance_matrix(loc,loc) # Distance between each device
dist = pd.DataFrame.from_records(d, columns=lab)
dist = dist.set_index(dist.columns)
dist = dist.round(decimals=1)
########## Network Plot without edges
coord = np.random.randint(low=1, high=100, size=(11,3))
lab = ['AP', 'STA1', 'STA2', 'STA3', 'STA4', 'STA5', 'STA6',
'STA7', 'STA8', 'STA9', 'STA10']
loc = pd.DataFrame.from_records(coord, columns=['X', 'Y', 'Z'],
index=lab)
d = distance_matrix(loc,loc) # Distance between each device
dist = pd.DataFrame.from_records(d, columns=lab)
dist = dist.set_index(dist.columns)
dist = dist.round(decimals=1)
# Add the nodes to graph
G=nx.Graph()
for i in range(len(loc)):
G.add_node(loc.index[i])
pos = loc.ix[:,0:2].transpose().to_dict(orient='list')
# Add edges
for i in range(len(loc)):
for j in range(len(loc)):
G.add_edge(loc.index[i], loc.index[j])
# Draw the network
fig, ax = plt.subplots(figsize=(5,5))
ax.axis('equal')
nx.draw_networkx(G, pos=pos, arrows= True, with_labels=True, node_size=600,
node_shape='o', alpha=0.5, font_size=10)
plt.show()
1) 给定的代码生成所需的图形,但没有边标签。我想在边缘的中心或其他地方绘制标签以使其更具可读性。请记住,edge_label 表示两个节点之间的距离(即索引和列标题具有相同值的“dist”数据帧中的值)。2)我们可以在 3D 中绘制相同的网络,因为节点具有三个坐标(X、Y 和 Z)。正如在我的代码中一样,我只绘制 X 和 Y 坐标。
最佳答案
要绘制边缘的标签,您需要首先将此数据添加到边缘:
G.add_edge(loc.index[i], loc.index[j], weight=d[i][j])
然后为了绘制标签,您可以调用nx.draw_networkx_edge_labels()
一起:
import numpy as np
import pandas as pd
import networkx as nx
import scipy
import matplotlib.pyplot as plt
##### Example data similar to my actual data
coord = np.random.randint(low=1, high=100, size=(11,3))
lab = ['AP', 'STA1', 'STA2', 'STA3', 'STA4', 'STA5', 'STA6', 'STA7',
'STA8', 'STA9', 'STA10']
loc = pd.DataFrame.from_records(coord, columns=['X', 'Y', 'Z'],
index=lab)
d = scipy.spatial.distance_matrix(loc,loc) # Distance between each device
dist = pd.DataFrame.from_records(d, columns=lab)
dist = dist.set_index(dist.columns)
dist = dist.round(decimals=1)
########## Network Plot without edges
coord = np.random.randint(low=1, high=100, size=(11,3))
lab = ['AP', 'STA1', 'STA2', 'STA3', 'STA4', 'STA5', 'STA6',
'STA7', 'STA8', 'STA9', 'STA10']
loc = pd.DataFrame.from_records(coord, columns=['X', 'Y', 'Z'],
index=lab)
d = scipy.spatial.distance_matrix(loc,loc) # Distance between each device
dist = pd.DataFrame.from_records(d, columns=lab)
dist = dist.set_index(dist.columns)
dist = dist.round(decimals=1)
# Add the nodes to graph
G=nx.Graph()
for i in range(len(loc)):
G.add_node(loc.index[i])
pos = loc.ix[:,0:2].transpose().to_dict(orient='list')
# Add edges
for i in range(len(loc)):
for j in range(len(loc)):
G.add_edge(loc.index[i], loc.index[j], weight='%.2f' % d[i][j])
# Draw the network
fig, ax = plt.subplots(figsize=(5,5))
ax.axis('equal')
nx.draw_networkx(G, pos=pos, arrows= True, with_labels=True, node_size=600, node_shape='o', alpha=0.5, font_size=10)
edge_labels = {(u, v): d['weight'] for u, v, d in G.edges(data=True)}
nx.draw_networkx_edge_labels(G, pos, edge_labels=edge_labels, font_size=8, rotate=False)
plt.show()
对于 3D 绘图,您可以使用mplot3d,here就是一个例子。
关于python - 在具有给定位置坐标的节点图中设置边标签的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53946334/
我有一个点(粉色圆圈),它有一个已知的 X 坐标和一个已知的 Y 坐标,但 Y 坐标> 坐标不正确。它当前位于目标贝塞尔曲线(部分位于白色正方形中的曲线)所在的点(如果它是两点之间的一条线)。我需要为
有一个基于QML 和QWT 的代码,一种具有更多可能性的图形生成器。技术要求之一是根据某个 X 坐标获得绘图曲线的 Y 坐标。 有一种不准确的方法 - 获取 QwtPlotCurve 的 QPoint
我目前正在将对象的 3D 坐标转换为 2D 坐标,然后在其上绘制 2D 文本(目前是对象名称): public static int[] getScreenCoords(double x, doubl
首先,我创建一个元组列表(要绘制的点)。每个元组由 3 个数字组成(x - 坐标,y - 坐标,c - 点的颜色) import random import matplotlib.pyplot as
我正在制作一个 2 人 Java 游戏,但我需要确保坐标保留在板上。 addPiece(1, 1, "X"); addPiece(8, 8, "O"); showBoard(); Scanner my
我想检查我是否正确使用了 scipy 的 KD 树,因为它看起来比简单的暴力破解要慢。 关于这个我有三个问题: Q1. 如果我创建以下测试数据: nplen = 1000000 # WGS84 lat
我有一个 GeoJSON 文件,我正在尝试处理它以便在谷歌地图上绘制一些功能。然而,问题在于坐标不是传统的纬度/经度表示法,而是一些大的六位/七位数字。示例: { "type":
我在使用坐标时遇到格式化问题。 public class Coordinate { public int x; public int y; public Coordinate( int x
我正在尝试获取当前位置的经度和纬度坐标。这是到目前为止我的代码: public class MainActivity extends AppCompatActivity { @Override pro
基本上,我需要获取从 OpenGL 中的贝塞尔曲线实现绘制的所有坐标。具体来说,我需要坐标来沿着弯曲的轨迹路径移动场景中的球体对象(棒球)。这是我用来绘制曲线的: GL2 gl = drawable.
现在我用 JAVA 遇到了一些问题,但不记得如何获取坐标系之间的长度。 例如。A 点 (3,7)B点(7,59) 我想知道如何计算a点和b点之间的距离。非常感谢您的回答。 :-) 最佳答案 A = (
我正在用 Pi2Go 机器人制作一个小项目,它将从超声波传感器获取数据,然后如果它看到一个物体,则放置一个 X,并放置 O 它当前所在的位置,我有两个问题:如何在 tkinter 上设置坐标位置?例如
如何在 pygame 中存储对象的先前坐标?我的问题可能有点难以解释,但我会尽力,如果您自己尝试我的代码以理解我的意思可能会有所帮助。 这就是我的游戏的内容。我希望这能让我的问题更容易理解。 我正在创
如何存储用户的当前位置并在 map 上显示该位置? 我能够在 map 上显示预定义的坐标,只是不知道如何从设备接收信息。 此外,我知道我必须将一些项目添加到 Plist 中。我怎样才能做到这一点? 最
我在 android 应用程序开发方面不是很熟练,我正在开发一个测试应用程序。我检测到了脸和眼睛,现在我要根据眼睛的坐标在脸上画一些像粉刺或疤痕的东西(例如脸颊上的眼睛下方)。稍后,我会把眼镜或帽子放
所以我正在使用 API 来检测图像中的人脸,到目前为止它对我来说效果很好。然而,我一直无法弄清楚如何将图像裁剪到脸上。我知道如何裁剪位图,但它需要获取位图中脸部的左上角位置以及宽度和高度。当我使用 查
我有 2 个表。第一个表包含以下列:Start_latitude、start_longitude、end_latitude、end_longitude、sum。 sum 列为空,需要根据第二张表进行填
有没有办法给 Google Maps API 或类似的 API 一个城镇名称,并让它返回城镇内的随机地址?我希望能够将数据作为 JSON 获取,以便我可以在 XCode 中使用 SwiftyJSON
我将坐标保存在 numpy 数组 x 和 y 中。现在我想要的只是获得一个多边形(分别是点数组),它用给定的宽度参数定义周围区域。 我遇到的问题是我需要一个没有(!)交叉点的多边形。但是,当曲线很窄时
我正在开发井字游戏 (3x3),所以我有 9 个按钮,我想做的是获取用户按下的按钮的坐标,并在按钮的位置插入图像。 例子: @IBOutlet weak var button1Outlet: UIBu
我是一名优秀的程序员,十分优秀!