d3 사전 : d3와 d3에 쓰이는 자바스크립트
d3 용어 그리고 자바스크립트 용어
Object.assign(a,b)는 a b를 결합하는 것이다..
------------------------------------------------------------------
map은 []array 호출하고 재구성할때 쓴다
--------------------------------------
d3.auto type
https://observablehq.com/@d3/d3-autotype
it can optionally detect common data types such as numbers, dates and booleans, and convert values to the corresponding JavaScript type.
ex) auto = d3.csv(url, d3.autoType)
------------------------------------------
fetch api 그리고 d3.csv
d3.csv 안에는 fetch api가 있다.
------------------------------------------------
d3 reference API
https://github.com/d3/d3/blob/master/API.md
------------------------------------------------------------------------------
!
!는 not에 의미이다... not이 되었을 때 true가 된다..
4 == 6 true
svg에서 파생된 개념 같다..
start middle end 가 있고 .... 처음 중간 마지막에서 할지 정하는 것이다..
-------------------------------------------------------------------------------------
.append("path")
그냥 선을 의미한다...
- .append("path") is used because we really only have one data object (a set of x,y coordinates), so we do not need to selectAll(), .enter(), append() like we have with other data sets.
https://www.dashingd3js.com/svg-paths-and-d3js
ㅇㅇㅇㅇㅇ