Our network graph is noisy and needs to be understood, broken up in to separate clusters, and generally cleaned up. How do people do that is my general question and my specific question regards simply deleting an object.
I'd like to design a mini-app to hand a PyVis network graph to a user and let them delete ( drop, remove ) edges or nodes somehow, preferably with a clean button or keyboard-shortcut to affect the currently selected objects.
I can't find in the PyVis documentation a command or example to drop/delete/remove a node or edge. I can't find any question let alone answer on StackOverflow tagged [pyvis] for how to do this. ( I can manage lists and queues etc in Python, this is about altering a visualized graph in real-time without having to secretly rebuild the whole thing.
Am I missing something obvious? Didn't anyone else ever want to do this?
But, I can't find any documentation on how to delete an existing node or edge from a visualized network. I'm looking at having to capture input, figure out the X, Y coordinates and current list of objects, back way up and remove what I want gone from the lists, and regenerating the whole display. Seriously?