graph = ForceGraph(dataset, {
height: 800,
width: width,
nodeRadius: node => nodeRadiusScale(popularity[node.id]),
nodeGroup: node => node.group,
nodeTitle: node => `${node.id}: ${popularity[node.id]} ${plurazire('connection', popularity[node.id])}`,
nodeDistanceMax: 270,
nodeStrenght: -50,
linkDistance: 50,
})