代码正在尝试绘制networkx图,并在节点上添加颜色,但是,它告诉我const indexes = indexNames.map( name => return createAlgoliaIndex(name) )
const main = indexes[0]
main.searchFunction = (helper) => {
indexes.forEach( (algoliaIndex, index) => {
if (index === 0)
return;
algoliaIndex.helper.setQuery(helper.state.query).search()
})
helper.search()
}
createAlgoliaIndexFor(name) {
return instantsearch({
indexName: name,
searchClient
})
}
上的错误。
NetworkXError: Node 'Contact2' has no position
答案 0 :(得分:0)
您只是拼写错误:
G.add_edge('Owner','Conatct2')
您有一个Conatct2
节点。您应该将其替换为Contact2
。