0
What do I call this kind of graph representation in English? Or should I use the term in English anyway?
with the library D3 the code would be that to create the "Force"
var simulation = d3.forceSimulation(nodes)
.force("charge", d3.forceManyBody())
.force("link", d3.forceLink(links))
.force("center", d3.forceCenter());
Examples of what this graph looks like: