[answer] [Network analysis] does not match input file and network output

This does not properly set the index of the node in the nodes data frame. Try this...

links$source <- match(links$source, nodes$name) - 1
links$target <- match(links$target, nodes$name) - 1

A post was merged into an existing topic: [Network analysis] does not match input file and network output