File size: 649 Bytes
9d7476b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
09182c3
9d7476b
 
879904d
 
9be8ce2
3c7ba3b
6f34f66
9d7476b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<head>
  <style> body { margin: 0; } </style>

  <script src="//unpkg.com/3d-force-graph"></script>
<!--  <script src="../../dist/3d-force-graph.js"></script>-->
</head>

<body>

  <div id="3d-graph"></div>

  <script>
    const elem = document.getElementById('3d-graph');

    const Graph = new ForceGraph3D(elem)
      .jsonUrl('https://huggingface.co/datasets/alihmaou/persistent-spaces-1973/resolve/main/forcegraphdata.json')
      .nodeAutoColorBy('group')
      .nodeLabel(
        node => `${node.group}: ${node.id} - ${node.details}`
      )
      .linkOpacity(.1)
      .linkWidth(0)
      .linkVisibility(true)
      ;
  </script>
</body>