2
edges
の文字列をnum38を使用してnodes
のインデックスで表現したいと考えています。文字列の行列を別の配列のインデックスで表現する
nodes = np.array('A B C D E'.split())
edges = np.array([['A', 'B'],
['A', 'C'],
['B', 'C'],
['B', 'E'],
['D', 'E']])
所望の出力
np.array([[0, 1],
[0, 2],
[1, 2],
[1, 4],
[3, 4]])
非最適化された明確な方法dict
を作成し、dict
の値で文字列を置換することです。