D3 - 네트워크 데이터 시각화


D3 - 네트워크 데이터 시각화

1. 시각화 예제 D3 공식 홈페이지 예제로는 아래 링크를 제공하고 있습니다. Networks 챕터에 Force-Directed(힘-방향) 그래프입니다. Force-Directed Graph / D3 | Observable // Copyright 2021 Observable, Inc. // Released under the ISC license. // https://observablehq.com/@d3/force-directed-graph function ForceGraph ( { nodes , // an iterable of node objects (typically [{id}, …]) links // an iterable of link objects (typically [{source, target}, …]) } , { nodeId = d => d... observablehq.com 2. 기반되는 메서드 인력과 척력 : 노드가 서로를 당기거나 밀어내는 힘입니다. 주로 .force...


#D3 #네트워크 #데이터시각화

원문링크 : D3 - 네트워크 데이터 시각화