【D3相关资料整理】持续更新中......

写在前面的话

我一直在搜索D3的资料
也是不断在学习
我自己学习的时候感觉资料很少很痛苦
所以就不希望别人也这么痛苦了 
我把我找到过的资料都分享一下,希望对您有帮助,如果你有新的资料可以给我留言

资料太多不方便看的话看目录吧 \(^o^)/~


主要资料

[1] 官方API文档。

学习和使用D3 的一手资料。除了文档之外还有一些代码示例。 https://github.com/mbostock/d3/wiki/API-Reference

[2] Stackoverflow。

很多难以理解的API 可以在这找到答案。http://stackoverflow.com/search?q=d3

[3] D3 开发者Mike Bostock 的博客。

包含大量在线示例。介绍了很多D3 的编程技巧,讲解了部分API 的使用,还探讨了许多 使用D3 会遇到的问题的解决方案。http://bl.ocks.org/mbostock

[4] D3 开发者Jason Davies 的个人网站。

包含很多在线示例。涉及一些API 的形象解释。扩展了D3 的地理投影。讲解了很多D3 的实现原理如贝塞尔曲线的动态演示等。还有一些像词云这样的实用插件。 https://www.jasondavies.com/

[5] 2000 多个D3 在线案例汇总。

作者收集的这些可视化案例大都可以在线运行,并且已经按照类别组织好,可以通过关键 词来筛选案例。http://christopheviau.com/d3list/gallery.html

[6] D3 官方教程。

教程包含图书、博客、幻灯片等各种资料。https://github.com/mbostock/d3/wiki/Tutorials

[7] 数据可视化工具汇总。

数据可视化技术选型的重要参考资料。包含50 多种流行的数据可视化工具的开源协议, 主页,文档,案例等资源的简单介绍,这些工具包括著名的D3.js,R,Gephi,Raphaël, Processing.js,Tableau Public,Google Chart Tools,Arbor.js 等工具。 http://selection.datavisualization.ch/

[8] SVG 在线教程。

讲解SVG 的基本功能,案例都可以在线演示。http://tutorials.jenkov.com/svg/index.html

[9] 《数据可视化实战(使用D3 设计交互式图表)》。

Scott Murray 著,李松峰译。这本书写得浅显易懂,是入门D3 的经典书籍。其中也有涉及 一些API 的简要介绍。

[10] 《D3.js In Action》。

Elijah Meeks 著。涉及D3 数据可视化的方方面面,特别是数据可视化和D3.js 的原理,定 制组件,大数据可视化等内容很经典。内容详实丰富。

[11] 《Mastering D3.js》。

Pablo Navarro 著。其中讲解了比较实用的地理可视化和实时数据可视化,包含部分API 的介绍。

[12] mapshaper。

支持Shapefile,GeoJSON 和TopoJSON 文件的在线编辑和转换。http://mapshaper.org/


D3的替代方案

简易图表

Echarts 
百度打造,底层主要是Canvas技术,图表封装的类型很多和易用性很好。

地址:http://echarts.baidu.com/index.html


Google Chart Tools
由早期的Image Charts API 发展而来的Google Chart Tools,可以用来生成不少标准的图表,也支持旧版本的IE。

地址:https://developers.google.com/chart/。

Highcharts JS
JavaScript 图表库,包含一些预定义的主题和图表。它在最新浏览器中使用SVG, 而在旧版本IE(包括IE6 及更新版本)中使用后备的VML。这个工具只对非商业用途免费。

地址:http://www.highcharts.com/。

JavaScript InfoVis Toolkit
简称JIT,它提供了一些预设的样式可用于展示不同的数据,包括很多例子,而文档的技术味道太浓。如果你喜欢它的预设样式,可以选择它,但浏览器支持情况不太清楚。

地址:http://philogb.github.com/jit/。

jqPlot
jQuery 绘图插件,只支持一些简单的图表,适合不需要自定义样式的情况。jqPlot 支持IE7 及更新版本。地址:http://www.jqplot.com/。
Timeline.js
专门用于生成交互式时间线的一个库。不用编写代码,只用其代码生成器即可。定制的空间不大,但时间线可不是那么容易做的。Timeline.js 只支持IE8 及之后的版本。

地址:http://timeline.verite.co/。

YUI Charts
雅虎YUI(Yahoo! User Interface Library)的Charts 模块,可用于创建简单的图表,支持很多浏览器。

地址:http://yuilibrary.com/yui/docs/charts/。

图谱可视化


所谓"图谱",就是具有网络结构的数据(比如B 连接到A,A 连接到C)。

Arbor.js
基于jQuery 的图谱可视化库。就算没用过它,也该看一看它的文档,连它的文档都是用这个工具生成的(可见它有多纯粹、多meta)。这个库使用了HTML 的canvas 元素,因此只支持IE9 和其他较新的浏览器,当然也有一些针对旧版浏览器的后备措施。

地址:http://arborjs.org/。

Sigma.js
一个非常轻量级的图谱可视化库。无论如何,你得看看它的网站,在页面上方的大图上晃几下鼠标,然后再看看它的演示。Sigma.js 很漂亮,速度也快,同样使用canvas。

地址:http://sigmajs.org/。

地图映射


我们要区分一下地图(全部内容都是地图)和地图映射(包括地理位置数据或地理数据,比如传统的地图)。D3 本身也有很多地图映射功能,但下面这些工具最好你也了解一下。

Kartograph
Gregor Aisch 开发的一个基于JavaScript 和Python 的非常炫的、完全使用矢量的库,它的演示是必看的。最好现在就去看一看。保证你从来没见过这么漂亮的在线地图。Kartograph 支持IE7 及更新版本。

地址:http://kartograph.org/。


Leaflet

贴片地图的库,可以在桌面和移动设备上流畅地交互。它支持在地图贴片上显示一些SVG 数据层。(参见Mike 的演示"Using D3 with Leaflet":http://bost. ocks.org/mike/leaflet/。) Leaflet 支持IE6(勉强)或IE7(好得多),当然还有其他更新版本的浏览器。

地址:http://leafletjs.com/。


Polymaps

显示贴片地图的库,在贴片上可以叠加数据层。Polymaps 依赖于SVG,因此在较新的浏览器中表现很好。

地址:http://polymaps.org/。

更底层的方案


以下工具跟D3 有些类似,都提供了绘制图形的方法,但没有预定义的模板。如果你愿意从头开始,希望得到更大的自由度,可能会对它们感兴趣。
Processing.js
Processing 的原生JavaScript 实现,是新接触编程的艺术家和设计师的梦幻式编程语言。Processing 是Java 写的,因此Processing 草图要在网页中显示通常要靠Java 小程序。有了Processing.js,常规的Processing 代码就可以在浏览器中直接运行了。由于使用canvas, 所以只适合现代的浏览器。

地址:http:// processingjs.org/。

Raphael
也是一个绘制矢量图形的库,受欢迎的原因是语法具有亲和力,而且支持老版本浏览器。

地址:http://raphaeljs.com/。

三维图形

说来也怪,D3 不擅长3D,因为浏览器从一开始就是二维的东西。但随着它对WebGL 的支持越来越完善,在网页中显示3D 图形也会渐渐成为一种趋势。

Three.js
能帮你生成任何3D 场景的一个库,谷歌Data Arts 团队出品。它的演示可以让人整整一天都沉浸其中,兴奋不已。

地址:http://mrdoob.github.com/three.js/。

基于D3的库


如果你使用D3,但又不想写代码,可以考虑下面这些基于D3 的工具。

Cubism
时间序列数据可视化的D3 插件,也是Mike Bostock 写的。(我非常喜欢其中的演示。)

地址:http://square.github.com/cubism/。

dc.js
这里的"dc"是dimensional charting(维度图表)的简写,因为这个库是专门为探索大型、多维数据集而进行优化的。地址:http://nickqizhu.github.com/dc.js/。

NVD3
可重用的D3 图表。NVD3 提供了很多漂亮的示例,不用像在D3 里那样编写代码就可以定制很多效果。地址:http://nvd3.org/。


D3示例网址

  1. 401k Fees Vary Widely for Similar Companies
  2. 512 Paths to the White House
  3. 7th Grade Graphs with D3
  4. 9-Patch Quilt Generator
  5. A Bar Chart
  6. A Bar Chart, Part 1
  7. A Bar Chart, Part 2
  8. A Chicago Divided by Killings
  9. A Christmas Carol
  10. A CoffeeScript console for d3.js visualization
  11. A fun, difficult introduction to d3
  12. A JSNetworkX example
  13. A KoExtensions example: #d3js KnockoutJS, RavenDB, WebAPI, Bootstrap
  14. A line chart plotting unit sales, colored by price for d3 data visualisations
  15. A map of translations of Othello into German
  16. A marimekko chart showing SKUs grouped by owner and brand.
  17. A matrix chart where each point is replaced with a marimekko
  18. A Migration of Unmarried Men
  19. A physics model of a physics model
  20. A Race to Entitlement
  21. A Radius Follows the Mouse
  22. A sea of tweets: what are italians saying about the election
  23. A simpler variation of Kepler’s Tally
  24. A Slice of Canadian Life
  25. A sprintf-like function using d3,js
  26. A statistical model for blood pressure in patients with hypertension
  27. A Visit From The Goon Squad - Interactive Character Map
  28. Abusing The Force Talk
  29. AC Milan vs Juventus
  30. Across U.S. Companies, Tax Rates Vary Greatly
  31. Adaptive Resampling
  32. Adaptive Resampling
  33. Addepar
  34. Advanced object constancy
  35. Advanced visualizations with D3.js and Kartograph
  36. Adventures in D3
  37. AFL Brownlow Medalists
  38. Aid Explorer
  39. Air pollution
  40. Airbnb vs Hotels: A Price Comparison
  41. Airocean World (Dymaxion) map
  42. Airy’s Minimum Error
  43. Airy’s Minimum Error
  44. Aitoff
  45. Aitoff Graticule
  46. Alaska Albers
  47. Albers Equal-Area Conic
  48. Albers Projection
  49. Albers Siberia
  50. Albers Tiles
  51. Albers USA
  52. Albers USA Projection
  53. Albers with Resampling
  54. Albers without Resampling
  55. AlbersUSA + PR
  56. All the Medalists: Men's 100-Meter Freestyle
  57. Alpha-shapes aka concave hulls
  58. Alternative D3.js documentation
  59. American Forces in Afghanistan and Iraq
  60. Among the Oscar Contenders, a Host of Connections
  61. An inlet to Tributary
  62. An introduction to d3.js video with synced visualisation
  63. An overview of the Hong Kong budget in 2013-14
  64. Analog clock
  65. Andrew Berls, Visualizing your bash history with d3.js
  66. Angel List compensation scatterplot
  67. AngularJS + D3.js = Radian
  68. Animated Bézier Curves
  69. Animated Bubble Chart of Gates Educational Donations
  70. Animated bubble charts for school data analysis
  71. Animated Clipped textPath
  72. Animated Quasicrystals
  73. Animated Sankey (alluvial) diagram
  74. Animated Spirographs
  75. Animated textPath
  76. Animated Trigonometry
  77. Antimeridian Cutting
  78. Antipodes
  79. antulik's Gists
  80. Apollonian Gasket
  81. Apple logo with gradient
  82. Arc Deduplication
  83. Arc Tween (Clock)
  84. Arc Tween Commented Example
  85. Arcs Around
  86. Area Chart
  87. Area chart
  88. Area Choropleth
  89. Area Transition
  90. Area with Missing Data
  91. Argentina Census
  92. Arlington Visual Budget
  93. Armadillo Projection
  94. Array Subclassing Test
  95. Arrows are Beautiful
  96. Article-Level Metrics over time
  97. Asia Lambert Conic Conformal
  98. At the Democratic Convention the Words Being Used
  99. At the National Conventions the Words They Used
  100. Atlantis
  101. Atlas zur Landtagswahl Bayern 2013
  102. AttrTween, Transitions and MV* in Reusable D3
  103. Audio Spectrum Analyzer
  104. August Projection
  105. Autofocus
  106. Automatic floating labels using d3 force-layout
  107. Automatically sizing text
  108. Axis Component
  109. Axis Examples
  110. Axis Styling
  111. Azimuthal Equidistant
  112. Azimuthal Equidistant
  113. Azimuthal Projections
  114. Baby Names in England & Wales
  115. Backbone-D3: Simple visualisations of Backbone collections via D3.js
  116. Baker Dinomic
  117. bar + sum: d3.js & angular.js
  118. bar + sum: d3.js & backbone.js
  119. bar + sum: d3.js & ember.js
  120. bar + sum: reusable d3.js
  121. bar + sum: vanilla d3.js
  122. Bar Chart
  123. Bar chart code generator and online editor
  124. Bar Chart with Negative Values
  125. barStack (flex layout)
  126. Bart particles
  127. Base64.js
  128. Baseball 2012 Predictions based on past 6 years
  129. Basic Gantt Chart
  130. Basic Reusable Slopegraph
  131. Bathymetry of Lake Michigan
  132. Bay Area d3 User Group
  133. Bay Area earthquake responses by zip code
  134. BBEdit Preferences
  135. Bearcart
  136. Beautiful Spiral Things
  137. Beautiful visualizations with D3.js
  138. Beer taxes in your state - CNNMoney
  139. Beeswarm plot
  140. Behind the Australian Financial Review’s Budget Explorer
  141. Berghaus Star Projection
  142. Better force layout node selection
  143. Bharat Bhole
  144. Bibly v2: Visualizing word distribution within the KJV bible
  145. Bieber Fever Meter with HTML5 Web Socket d3.js and Pusher
  146. Big Money in Tax Breaks
  147. Biham-Middleton-Levine Traffic Model
  148. Bilevel Partition
  149. Binify + D3 = Gorgeous honeycomb maps
  150. Binned Line Chart
  151. BioVis Project: Identification of Mutations that Affect Protein Function
  152. BIS Derivative Data
  153. Bitdeli: Custom analytics with Python and GitHub
  154. Bitly link Co-occurrence
  155. Bivariate Area Chart
  156. Bivariate Hexbin Map
  157. Blobular
  158. Blocky Counties
  159. Blocky Counties
  160. Bloom Filters
  161. Blur/fade effect
  162. Boeing 777 Descent Profiles, SFO
  163. Boggs Eumorphic
  164. Bonne Projection
  165. Boomstick motion
  166. Boomstick motion coffee
  167. Boston d3.js User Group
  168. Boulder County Wildfires
  169. Bounded Force Layout
  170. Box Plots
  171. Bracket Layout
  172. Briesemeister
  173. Bromley
  174. Browser usage plurality
  175. Brush
  176. Brush Handles
  177. Brush Snapping
  178. Brush Snapping II
  179. Brush Transitions
  180. Brushable Network
  181. Brushable Network, II
  182. Bubble Chart
  183. Bubble My Page Visualization
  184. Bubbles
  185. Bubbles generator using a simplex noise
  186. Build world clocks
  187. Build Your Own Graph!
  188. Building a lightweight, flexible D3.js dashboard
  189. Building a tree diagram
  190. Building a UML editor in JS
  191. BulleT (a variant of mbostock's Bullet Charts)
  192. Bullet chart variant
  193. Bullet Charts
  194. Bump Chart with rCharts and Rickshaw
  195. Caged/d3-tip
  196. Calculating quadtree bounding boxes and displaying them in leaflet
  197. Calendar View
  198. Calendar View
  199. California Population Density
  200. Calkin-Wilf Tree
  201. Calroc
  202. Calroc: Web as Theater
  203. Can people localize sounds with one functional ear?
  204. Can't we all get along?
  205. Can't we all get along?
  206. Candlestick charts
  207. Canvas Geometric Zooming
  208. Canvas Semantic Zooming
  209. Canvas Swarm
  210. Canvas with d3 and Underscore
  211. Capturing Listeners
  212. Capturing Mousemove
  213. Caravaggio’s Bacco (1597)
  214. Carotid-Kundalini Fractal Explorer
  215. Carotid-Kundalini Fractal Explorer
  216. CartoDB + D3 Bubble Map
  217. CartoDB makes D3 maps a breeze
  218. Cartogram.js: Continuous Area Cartograms
  219. Case-Sensitivity and SVG-in-HTML
  220. Cassini
  221. Cellular automata
  222. Cellular automata
  223. Central Limit Theorem Visualized in D3
  224. CFCLTWiki
  225. Chained Transitions
  226. Chained Transitions
  227. Chamberlin Trimetric
  228. Changes in Employment and Salary by Industry
  229. Chart Wheel Visualization
  230. Chart.io: The Easiest Business Dashboard You'll Ever Use
  231. Chartbuilder
  232. Chernoff faces
  233. Chernoff faces Fisheye Geodesic grid Hive plot Horizon chart Sankey diagram
  234. Chicago Lobbyists
  235. Chicago Ward Remap Outlines
  236. CHIPMOD
  237. Chord Diagram
  238. Chord diagram with Dex
  239. Chord Diagram: Dependencies Between Classes
  240. Chord diagram: Fade on Hover
  241. Chord diagram: Updating data
  242. Chord Layout Transitions
  243. Choropleth
  244. Choropleth classification systems
  245. Choropleth with interactive parameters for NYC data visualization
  246. Christchurch Earthquakes
  247. christophermanning’s bl.ocks
  248. Chroma + Phi (ϕ)
  249. Chrome Circle Precision Bug
  250. Chrome Circle Precision Bug
  251. Circle Packing
  252. Circle Packing with Zero Values
  253. Circle Packing Zero Values
  254. Circle-bound D3 force layout
  255. Circle-Circle Intersection
  256. Circle-Polygon Intersection
  257. Circles
  258. Circular heat chart
  259. Circular key scale
  260. Circular Layout
  261. Circular Layout (Arc)
  262. Circular Layout (Recursive)
  263. Circular Layout (Slider)
  264. Circular Segment
  265. Circular tree comparing the src directory for three versions of d3
  266. Classements par étape - Tour de France 2012
  267. Clean Up for Natural Earth GeoJSON
  268. click-to-center
  269. click-to-center via transform
  270. click-to-zoom via transform
  271. Click-to-Zoom via Transform
  272. Clickme: Render JavaScript visualizations using R objects
  273. Clinical trials in Multiple Sclerosis
  274. Close Votes - visualizing voting similarities for the Dutch 2012 national elections
  275. Closest Point to Segment
  276. Cluster Dendrogram
  277. Cluster Dendrogram
  278. Clustered Force Layout
  279. Clustered Force Layout
  280. Co-Authors Chords
  281. CodeFlower Source code visualization
  282. CoderDojo - Intro to D3.js
  283. Coffee Flavour Wheel
  284. Collapsible Force Layout
  285. Collapsible Force Layout
  286. Collapsible Force Layout
  287. Collapsible Indented Tree
  288. Collapsible tree
  289. Collapsible Tree
  290. Collapsible Tree Layout
  291. Collapsible tree with labels
  292. Collatz Graph: All Numbers Lead to One
  293. Collective.js.d3 Integrates D3.js in Plone
  294. Collider - a d3.js game
  295. Collignon Projection
  296. Collision Detection
  297. Collision Detection
  298. Collision Detection (Canvas)
  299. Collpase/expand nodes of a tree
  300. Collusion FireFox Addon
  301. Colony - Visualising Javascript projects and their dependencies
  302. Color Brewer
  303. Color scheme sunburst
  304. Color via Clipping
  305. Color: a color matching game
  306. Combinatorial Necklaces and Bracelets
  307. Combining D3 and Ember to Build Interactive Maps
  308. Comic Book Narrative Charts
  309. Commented bar chart code
  310. Comparing the same surveys by different polling organizations (polish)
  311. Comparison of MS trials baseline characteristics
  312. Complete Graphs
  313. Composite Map Projection
  314. Composition of Church Membership by State: 1890
  315. Computationally Endowed
  316. Concentric Circles Emanating
  317. Concurrent Transitions
  318. Concurrent Transitions II
  319. Confidence interval in poll surveys
  320. Congressional Network Analysis
  321. Connections in time
  322. Constrained Zoom
  323. Constraint relaxation 1
  324. Constraint relaxation 2
  325. Contextual Pie Menu in AngularJS
  326. Contour Plot
  327. Converting dynamic SVG to PNG with node.js, d3 and Imagemagick
  328. Convex Hull
  329. Conway's Game of life as a scrolling background (broken link)
  330. Conway's game of life in D3.js
  331. Conway's game of life with JS and D3.js
  332. Coordinated visualizations for Consumer Packaged Goods
  333. Coordinated Visualizations: An introduction to crossfilter.js
  334. Copper: Wrapper around python packages with D3.js viz
  335. Cost of living
  336. Cost of Living - Parallel Coordinates
  337. Costa Rica shaded relief
  338. Counting Weekdays
  339. Countries and Capitals with D3 and Natural Earth
  340. County Circles
  341. CPI Interactive index, with Angular.js, bootstrap and d3.js
  342. Craig Retroazimuthal
  343. Craig Retroazimuthal
  344. Craster Parabolic
  345. Crayola Colour Chronology
  346. Create a JavaScript bar chart with D3
  347. Create any map of the world in SVG
  348. Creating a Polar Area Diagram
  349. Creating Animated Bubble Charts in D3
  350. Creating Animations and Transitions With D3
  351. Creating Basic Charts using d3.js
  352. Creating Reusable D3, MVC, and Events
  353. Creating Thumbnails with GraphicsMagick
  354. Crime in Mexico
  355. Cross-linked Mouseover
  356. Crossfilter.js
  357. CS6964: Information Visualization
  358. CSS3 Modal Button
  359. CSSdeck: Repulsion example
  360. CSSOM/SVG Test
  361. CSV Syntax Definition
  362. Cube Metrics Client (Node.js + WebSockets)
  363. Cube Realtime Map
  364. Cube: Time Series Data Collection & Analysis
  365. CubicHamiltonianGraphs
  366. Cubism.js: Time Series Visualization
  367. Current Article Popularity Trends on Hacker News
  368. Current rainfall, weather and buoy information for Ventura County and nearby counties
  369. Curved Links
  370. Curved textPath
  371. Custom Axis
  372. Custom Cartesian Projection
  373. Custom Easing
  374. Custom Path and Area Generator
  375. Custom Projection
  376. Custom Time Format
  377. Cylindrical Equal-Area
  378. D#.js and Hawaii Open Data
  379. D3 and Custom Data Attributes
  380. D3 and the Power of Projections : MapBrief
  381. D3 and WordPress
  382. D3 Arc Diagram
  383. D3 Bookmarklet
  384. D3 Chart Builder
  385. D3 concept browser
  386. D3 Conceptually
  387. D3 Dorling cartogram with rectangular states
  388. D3 examples
  389. D3 Examples on Heroku
  390. D3 flights
  391. D3 for Mere Mortals
  392. D3 GeoJSON and TopoJSON Online Renderer with Drag and Drop
  393. D3 graph plugin
  394. D3 graphics in a Pergola SVG UI
  395. D3 heatmap using Backbone.js and CoffeeScript
  396. D3 Hello World
  397. D3 js slides
  398. D3 line chart for Angularjs
  399. D3 linked view with a hexagonal cartogram
  400. d3 meta-visualization
  401. D3 node focus
  402. d3 O'Clock: Building a Virtual Analog Clock with d3.js, Part I
  403. d3 pie plugin
  404. D3 PJAX
  405. d3 rendered with RaphaelJS for IE Compatibility
  406. D3 selection transform syntax
  407. d3 several time scales
  408. D3 Show Reel
  409. D3 Slopegraph I
  410. D3 Slopegraph II
  411. D3 tag at Empire5
  412. D3 tag at Exploring Data
  413. D3 Treemap with Title Headers
  414. D3 Tutorials
  415. D3 Waveform Live demo
  416. D3 with HTML: divs as datavis
  417. d3 workshop
  418. D3 Workshop Slides
  419. D3 World Maps: Tooltips, Zooming, and Queue
  420. D3-Builder
  421. d3-comparator: sort arrays of objects by multiple dimensions
  422. D3-curvy/
  423. D3-plugins
  424. D3-tip on a bar chart
  425. D3-tree
  426. d3-tree-heatmap
  427. D3, Conceptually
  428. D3: Data-Driven Documents
  429. d3.bayarea( ) Celebrating 1024 members!
  430. d3.chart Choropleths
  431. d3.chart.tooltips
  432. d3.create + selection.adopt
  433. d3.geo.path + Canvas
  434. d3.geo.tile
  435. d3.geo.tile
  436. d3.geo.tiler
  437. D3.java script by Vienno - Keenjar
  438. D3.js and a little bit of ClosureScript
  439. D3.js and Excel
  440. D3.js and GWT proof-of-concept
  441. D3.js and Meteor to generate SVG
  442. D3.js and MongoDB
  443. D3.js and vega.js plots in the IP notebook
  444. D3.js and X-Requested-With Header
  445. D3.js crash course
  446. D3.js Docco documentation
  447. D3.js Documentation Generator for Dash and HTML
  448. D3.js experiments in the console
  449. d3.js for Attacker Reports
  450. D3.js force diagram from Excel
  451. D3.js force diagrams straight from Excel
  452. D3.js force diagrams with markers straight from Excel
  453. D3.js Geo fun
  454. D3.js graphs for RHQ
  455. D3.js Lessons: Create a Basic Column Chart
  456. D3.js Meta Tutorial
  457. D3.js nested data
  458. d3.js on Veengle
  459. D3.js playground
  460. D3.js Playground
  461. D3.js Premiership Season
  462. D3.js Presentation
  463. D3.js Slider Examples
  464. D3.js Sublime2 snippets
  465. D3.js tag at Frakturmedia
  466. d3.js tag at Monkeyologist
  467. D3.js tag on The JavaDude Weblog
  468. D3.js talk at Github
  469. D3.js talk from Iowa City Feb 2013 Iowa JS Meetup
  470. D3.js Tips and Tricks
  471. D3.js tree with drag nea logic
  472. D3.js tutorial on CodeAcademy
  473. d3.js video tutorial
  474. D3.js, elasticsearch, bordeaux open data
  475. D3.js,Data Visualisation in the Browser
  476. D3.js: Data-Driven Delight
  477. d3.micromaps
  478. d3.nest
  479. d3.phylogram
  480. d3.sticker plugin
  481. d3.time.format localization
  482. d3.time.scale nice
  483. d3.tsv
  484. d34raphael
  485. D3py
  486. DAG as force graph
  487. Dagre: Directed graph rendering
  488. Daily data return rates for seismic networks in the EarthScope USArray
  489. Dance.js: D3 with Backbone and Data.js
  490. Dangle
  491. Dashifyr
  492. Dat achart plugin
  493. Data Science Venn Diagram
  494. Data Stories #22: NYT Graphics and D3
  495. Data Story
  496. Data Visualization at MinnPost
  497. Data Visualization Libraries Based on D3.JS
  498. Data Visualization Using D3.js
  499. Data visualization with D3.js and python
  500. Data Visualization with D3.js, slides and video
  501. Data-Driven Documents, Defined, Resources, Data Driven Journalism
  502. Datadog
  503. DataFart
  504. Dataflow programming with D3 and Blockly
  505. DataMaps: Interactive maps for data visualizations.
  506. Datameer Smart Analytics
  507. Datawrapper: An open source tool to create embeddable charts
  508. Date Ticks
  509. DavaViz for Everyone: Responsive Maps With D3
  510. David Foster Wallace's 'Infinite Jest'
  511. DC Code Browser
  512. DC government
  513. Dc.js NASDAQ demo
  514. De Maastricht au traité budgétaire : les oui et les non de 39 personnalités politiques
  515. Deadly Tornado Outbreak - April 25-28, 2011
  516. Decomposing an image from canvas to SVG
  517. Delaunay Triangulation
  518. Delta-flora for IntelliJ analyze project source code history
  519. Dendrogram
  520. Density map of homicides in Monterrey
  521. Dependo: force directed graph of JavaScript dependencies
  522. Description: A little language for d3js
  523. Design process of The Electoral Map
  524. Designing a Reusable Line Chart in D3JS
  525. Detecting Duplicates in O(1) Space and O(n) Time
  526. Dex Motion Chart Demo
  527. DexCharts: A new reusable charting library for D3.js
  528. Diagram of Patients and Symptoms
  529. Dial examples
  530. Difference Chart
  531. Dimensional Changes in Wood
  532. Dimple Pong
  533. Dimple.js: An oo API for business analytics powered by d3.
  534. Directed Graph Editor
  535. Directly render and serve d3 visualizations from a nodejs server.
  536. Disc
  537. Dispatching Events
  538. Dissecting a Trailer: The Parts of the Film That Make the Cut
  539. Distances from North Korea
  540. DOM-to-Canvas using D3
  541. Donut Chart
  542. Donut Multiples
  543. Donut Transitions
  544. Dorling World Map
  545. Dot Append video tutorials
  546. Dot Enter video tutorials
  547. Dot enter( ) stage left
  548. Dot plot with jittering
  549. Dots
  550. Downton Ipsum ~ A Downton Abbey-inspired lorem ipsum text generator
  551. Drag + Zoom
  552. Drag and Drop Container Divs
  553. Drag and resize a D3.js chart with JqueryUI
  554. Drag Multiples
  555. Drag rectangle
  556. Draggable Network
  557. Draggable Network, II
  558. Draw tangent on a line on mouseover
  559. Drawing Chemical Structures with Force Layout
  560. Drawing Hexagon Mesh with contour using TopoJSON
  561. Driving from Thailand to the Netherlands
  562. Drop shadow example
  563. Drought and Deluge in the Lower 48
  564. Drought during Month
  565. Drought Extends Crops Wither
  566. DRY Bar Chart
  567. Dual scale line chart
  568. DViz: a declarative data visualization library
  569. Dymo
  570. Dynamic Distance Cartogram for ORBIS
  571. Dynamic Simplification
  572. Dynamic Simplification II
  573. Dynamic Simplification III
  574. Dynamic Visualization LEGO
  575. Dynamic-Graphs: charting lib for real-time data
  576. Dynamics of Swedish politics
  577. Easy infographics with D3.js
  578. Eckert I Projection
  579. Eckert II Projection
  580. Eckert III Projection
  581. Eckert IV Projection
  582. Eckert V Projection
  583. Eckert VI Projection
  584. Eckert–Greifendorff
  585. eCommerce API Wheel for eBay
  586. Economic performance of the Amsterdam Metro Area by sector and year
  587. Edge labels
  588. Eisenlohr Projection
  589. El Patrón de los Números Primos
  590. Elastic collisions
  591. Elbow Dendrogram
  592. Elbow Dendrogram
  593. Election 2012 Social Dashboard (interactive Twitter visualization)
  594. Electro 2013: The magnetic force between political candidates and objectives
  595. Elezioni 2013 - I risultati del voto per la Camera dei deputati
  596. Embed D3.js Animations in Slidify
  597. Embedly Blog, Visualizing discussions on Reddit with a D3 network and Embedly
  598. Ember Table
  599. Ember Timetree
  600. English Football Tickets: Value For Money
  601. Enumerating vertex induced connected subgraphs
  602. Epicyclic Gearing
  603. Epicyclical Gears
  604. EPSG:2163 Coordinates
  605. Equidistant Conic Projection
  606. Equirectangular (Plate Carrée)
  607. Error bars reusable component
  608. Eurozone crisis: more than debt
  609. Events in the Game of Thrones
  610. Every ColorBrewer Scale
  611. Every known drone strike and victim in Pakistan
  612. Example of interactive MDS visualisation
  613. Example of map with routes in Gunma
  614. Exit, Update, Enter
  615. Exit, Update, Enter II
  616. Exoplanets
  617. Exoplanets: an interactive version of XKCD 1071
  618. Expandable Menu
  619. Exploration of the Google PageRank Algorithm
  620. Explore Analytics: cloud-based data analytics and visualization
  621. Exploring d3.js with data from my runs to plot my heart rate
  622. Exploring Health Care Cost and Quality
  623. Exploring Reusability with D3.js
  624. Explosions
  625. Export to SVG/PNG/PDF server-side using Perl
  626. Extending the D3 Zoomable Sunburst with Labels
  627. Extent Ticks
  628. External SVG
  629. Extradition Treaties
  630. Eyedropper
  631. F1 Championship Points as a d3.js Powered Sankey Diagram
  632. Facebook Mutual Friends
  633. Facebook Open Graph with Angular
  634. Faces
  635. Factorisation Diagrams
  636. Fahey
  637. Fahrradunfälle in Deutschland
  638. Fancy Markers
  639. Fancy Markers (No Gradient)
  640. Farid Rener CV
  641. Fast Multidimensional Filtering for Coordinated Views
  642. Fast Pointing
  643. Faster pan/zoom on big TopoJSON of Iceland
  644. Faux-3D Arcs
  645. Faux-3d Shaded Globe
  646. Feltronifier
  647. Fill-Rule Evenodd
  648. Filling Geometric Objects
  649. Financial visualization of top tech companies
  650. Fineo: an app based on Sankey diagrams
  651. Finite State Stream
  652. First steps in data visualisation using d3.js
  653. Fisheye Distortion
  654. Fisheye Grid
  655. Fixed-width Histogram of Durations log-normal distribution
  656. Flat-Polar Parabolic
  657. Flat-Polar Quartic
  658. Flat-Polar Sinusoidal
  659. Floating Landmasses
  660. Floor Plan Map
  661. Flow - Straight, Arrows
  662. Flows of refugees between the world countries in 2008
  663. Focus+Context via Brushing
  664. Focusable Maps
  665. Football passes
  666. For Example
  667. For Protovis Users
  668. Force Editor + Pan/Zoom
  669. Force Layout & Matrix Market Format
  670. Force layout big
  671. Force Layout from Adjacency List
  672. Force Layout from CSV
  673. Force Layout from List
  674. Force layout graph with colour-coded node neighbours
  675. Force Layout Multiples (Independent)
  676. Force layout on composite objects
  677. Force Layout with Canvas
  678. Force Layout with Mouseover Labels
  679. Force Layout with Tooltips
  680. Force-Based Label Placement
  681. Force-based label placement
  682. Force-Directed Graph
  683. Force-Directed Graph
  684. Force-Directed Graph with Mouseover
  685. Force-Directed Graphs: Playing around with D3.js
  686. Force-Directed Layout from XML
  687. Force-directed layout with drag and drop
  688. Force-directed layout with interactive Construction
  689. Force-directed layout with multi Foci and Convex Hulls
  690. Force-directed layout with multiple Foci
  691. Force-directed lollipop chart
  692. Force-Directed Parallel Coordinates
  693. Force-directed Splitting
  694. Force-Directed States
  695. Force-Directed States of America
  696. Force-Directed SVG Icons
  697. Force-Directed Symbols
  698. Force-Directed Tree
  699. ForceEdgeBundling on US airline routes
  700. ForceLayoutEditor
  701. Forecast of Mexican 2012 presidential election
  702. Foreign aid, corruption and internet use
  703. Formula 1 Lap Chart
  704. Forrst, Visualizing US Foreign Aid with D3.js
  705. Foucaut’s Stereographic Equivalent
  706. Four Ways to Slice Obama's 2013 Budget Proposal
  707. France - Data Explorer
  708. From Random Polygon to Ellipse
  709. From tree to cluster and radial projection
  710. Fuzzy Counties
  711. Fuzzy Link-Bot
  712. G3plot-1
  713. Gall Stereographic
  714. Gall–Peters
  715. Game of life
  716. GAMEPREZ Developer Kit
  717. Gantt Chart plugin
  718. Gantt Chart, example 3
  719. Gauge
  720. Gaussian Primes
  721. General Update Pattern, I
  722. General Update Pattern, II
  723. General Update Pattern, III
  724. GeoDash
  725. Geodesic Grid
  726. Geodesic Rainbow
  727. Geographic Bounding Boxes
  728. Geographic Clipping
  729. GeoJOIN
  730. GeoJSON Transforms
  731. Geometry daily #129
  732. GeoMobilité - Application cartographique de la mobilité
  733. Get dirty with data using d3.js
  734. getBBox
  735. Getting Started with D3
  736. ggplot2 + d3 = r2d3
  737. ggplot2-Style Axis
  738. Ginzburg IV
  739. Ginzburg IX
  740. Ginzburg V
  741. Ginzburg VI
  742. Ginzburg VIII
  743. Giraffe : A Graphite Dashboard with a long neck
  744. Girko's Circular Law
  745. Girls Lead in Science Exam, but Not in the United States
  746. Gist API Latency
  747. Git-backed Node Blob Server
  748. GitHub visualization
  749. Github Visualizer
  750. gka’s blocks
  751. Glimpse.js: a new chart library on top of D3.js
  752. Global Oil Production & Consumption since 1965
  753. Global Surface Temperature: 500 ... 2009
  754. Glucose heatmap over hours of day
  755. Glucose with panning
  756. Gnomonic
  757. Gnomonic Butterfly
  758. Goode Homolosine
  759. Google calendar like display
  760. Google Flu Trends
  761. Google Hurdles
  762. Google Maps + D3
  763. GOV.UK's web traffic
  764. Gradient Along Stroke
  765. Gradient Bump
  766. Gradient Encoding
  767. Graph diagram of gene ontology
  768. Graph of my current interests and aspirations
  769. Graph Rollup
  770. Graphicbaseball: 2012 Batters
  771. Graphicbaseball: 2012 Pitchers
  772. Graphs
  773. Gravity balls
  774. Gray Earth
  775. Great Arc
  776. Great Circle Arc Intersections
  777. Great-Circle Distance
  778. Grid layout
  779. Gringorten Equal-Area
  780. Grouped Bar Chart
  781. Grouped Bar Chart
  782. GSA-Leased Opportunity Dashboard
  783. Gun homicides in America 2010
  784. Gun ownership versus gun violence
  785. Guts of EnergyPlus Source Code Visualized with d3.js
  786. Guyou Projection
  787. Hacker News statistics using PhantomJS
  788. Hacker Notes, d3 tag
  789. Hamiltonian Graph
  790. Hammer
  791. Hammer Retroazimuthal
  792. Hamming Quilt
  793. Haphazard collection of examples for a book
  794. HarvardX Research: worldwide student enrollment
  795. Hashing Points
  796. Hata's tree-like set (with slider)
  797. Hatnote Listen to Wikipedia
  798. HEALPix
  799. Health and Wealth of Nations
  800. Healthvis R package – one line D3 graphics with R
  801. Heatmap
  802. Heatmap and 2D Histogram
  803. Heatmap of gene expression with hierarchical clustering
  804. Heatmap with Canvas
  805. Heavily annotated scatterplot
  806. Hedonometer: Daily Happiness Averages for Twitter
  807. Heightmap
  808. Hell is Other People: Scott Made This
  809. herrstucki on bl.ocks
  810. Hexagonal Binning
  811. Hexagonal Binning (Area)
  812. Hexagonal cartogram of Asian economies and potential shifts in manufacturing
  813. Hexagonal Grids
  814. Hexbin Edits on OpenStreetMap
  815. Hierarchical Bar Chart
  816. Hierarchical Bars
  817. Hierarchical classification
  818. Hierarchical Edge Bundling
  819. Hierarchical Edge Bundling
  820. Hierarchical Edge Bundling
  821. Hierarchical Edge Bundling
  822. Hilbert Curve
  823. Hilbert Stocks
  824. Hilbert Tiles
  825. Hill Eucyclic
  826. Histogram
  827. Histogram
  828. Histogram (Redirect)
  829. Histogram Chart
  830. History of the WWE Title
  831. Hive Plot
  832. Hive Plot (Areas)
  833. Hive Plot (Links)
  834. Hive Plot for Student Systems
  835. Hobo–Dyer
  836. Home energy consumption
  837. Horizon Chart
  838. Horse Exports/Imports in the EU
  839. Hotspots
  840. House Hunting All Day, Every Day - Trulia Insights
  841. How does Quartz create visualizations so quickly on breaking news?
  842. How educated are world leaders?
  843. How Obama Won Re-election
  844. How selectAll Works
  845. How Selections Work
  846. How the Chicago Public School District Compares
  847. How to Animate Transitions Between Multiple Charts
  848. How to convert to D3js JSON format
  849. How to design a dashboard using d3.js
  850. How to Embed Open Spending Visualizations
  851. How to get a significant correlation value by moving just one point around
  852. How to Make an Interactive Network Visualization
  853. How to Make Choropleth Maps in D3
  854. How to visualise funnel data from Google Analytics
  855. HTML Overlay with pageX / pageY
  856. HTML5 input type nodes
  857. http://nowherenearithaca.blogspot.com/2012/06/annotating-d3-example-with-docco.html
  858. Hypercube Edges in Orthogonal Projection
  859. Hypercube with Parallel Coordinates
  860. Iceland Topography
  861. Icelandic population pyramid
  862. Icequake
  863. Icicle
  864. Icosahedron
  865. Icosahedron
  866. iD Architecture: Map Rendering and Other UI
  867. iD: a friendly editor for OpenStreetMap
  868. IDH des communes du Nord-Pas de Calais.
  869. iLearning - D3.js Basic for iPad
  870. Image Markers
  871. Image Processing
  872. Image tiles with float: left
  873. Immersion: a people-centric view of your email life
  874. Income diff. between male and female dominated occupations 1
  875. Income diff. between male and female dominated occupations 2
  876. Increased Border Enforcement, With Varying Results
  877. Increased Border Enforcement, With Varying Results - Interactive Graphic - NYTimes.com
  878. Indented tree layout
  879. Indian Village Components
  880. Indo-Europeans
  881. Inequality and NY Subway
  882. Inequality in America
  883. Infinite Plasma Fractal
  884. Infro
  885. Infro.js: Filtering Tabular Data
  886. Infro.js: Nutrient Dataset
  887. Inkscape-s3-server
  888. Input Value Interpolation
  889. Inspired by geometry daily
  890. Instant interactive visualization with d3 + ggplot2
  891. Integrating D3 with a CouchDB database 1
  892. Integrating D3 with a CouchDB database 2
  893. Integrating D3 with a CouchDB database 3
  894. Integrating D3 with a CouchDB database 4
  895. Interactive azimuthal projection simulating a 3D earth with stars
  896. Interactive Data Visualization for the Web
  897. Interactive Data Visualization for the Web: read online
  898. Interactive Gnomonic
  899. Interactive Line Graph
  900. Interactive Line Graph
  901. Interactive MDS visualisation
  902. Interactive Orthographic
  903. Interactive Publication History
  904. Interactive Stereographic
  905. Interactive visual breakpoint detection on SegAnnDB
  906. Interpolating with d3.tween
  907. Interrupted Boggs Eumorphic
  908. Interrupted Goode Homolosine
  909. Interrupted Goode Raster
  910. Interrupted Mollweide
  911. Interrupted Sinu-Mollweide
  912. Interrupted Sinusoidal
  913. Intro to d3
  914. Intro to d3 at gaffta
  915. Introducing Contributions on GitHub
  916. Introduction
  917. Introduction to D3
  918. Introduction to D3
  919. Introduction to D3.js
  920. Introduction to d3.js and data-driven visualizations
  921. Introduction to Network Analysis and Representation
  922. IPython-Notebook with D3.js
  923. Irish Horse Breeding Data
  924. IRL Trnspttr
  925. Irregular Histogram (Lollipop)
  926. Is Barack Obama the President? (Balloon charts)
  927. iTunes Music Library Artist/Genre Graph
  928. Jan Willem Tulp portfolio
  929. Japanese Government Bonds Rates
  930. Japanese Government Bonds Yield Curve
  931. Javascript and MapReduce
  932. Javascript Idioms in D3.js
  933. Jerome Cukier » Selections in d3 – the long story
  934. Jérôme Cukier portfolio
  935. JezzBall
  936. Jim Vallandingham portfolio
  937. Job Flow
  938. Jobs by state
  939. johan’s blocks
  940. JSNetworkX: A port of the NetworkX graph lib to JS
  941. Jsplotlib
  942. Junction Finding
  943. Just Enough SVG
  944. K-means
  945. Kaleidoscope
  946. Kaprekar Routine
  947. Kavrayskiy VII Projection
  948. Kentucky Population Density
  949. Kentucky Population Density
  950. Kepler’s Tally of Planets
  951. Kernel Density Estimation
  952. Kind of 3D with D3
  953. Kindred Britain
  954. Know Huddle - Correlation
  955. Koalas to the Max!
  956. L*a*b* and HCL color spaces
  957. La Nuit Blanche
  958. Labeled Force Layout
  959. Labeled Force Layout
  960. Labeled points
  961. Labeling in OpenStreetMap's iD Editor
  962. Lagrange Projection
  963. Lambert Azimuthal Equal-Area
  964. Lambert Conformal Conic Projection
  965. Language Network
  966. Lantern
  967. Larrivée Projection
  968. Laskowski Tri-Optimal
  969. Last Chart! - See the Music
  970. Latest Earthquakes
  971. Lazy Scale Domain
  972. LDA Topic Arcs: The DaVinci Code
  973. LDAviz
  974. Leaflet + D3js: Hexbin
  975. Leaflet Template
  976. leaflet.d3
  977. Leap Motion D3.js Demo
  978. Leap motion map tests
  979. Learn how to make Data Visualizations with D3.js
  980. Learning D3, Speaker Deck
  981. Left-Aligned Ticks
  982. Left-Aligned Ticks
  983. Legend
  984. Leibniz Spiral
  985. Lepracursor
  986. Les Misérables Co-occurrence Matrix
  987. Let’s Make a Map
  988. Letter Frequency
  989. Liberal Revolution of 1820 in Lisbon
  990. Library for visualizing Go games
  991. License Usage Dashboard
  992. Life Expectancy
  993. Life expectancy 1960-2009 choropleth
  994. Life expectancy 1960-2009 panel chart
  995. Life expectancy 1960-2009 slopegraph
  996. Limaçon as envolve of circles around a circle
  997. Line Chart
  998. Line Chart with tooltips
  999. Line chart with zoom, pan, and axis rescale
  1000. Line Interpolation
  1001. Line Intersection Brushing
  1002. Line Simplification
  1003. Line Tension
  1004. Line Transition
  1005. Line Transition (Broken)
  1006. Linear Gradient
  1007. Linear Programming
  1008. Lines with Rounded Turns
  1009. Linked Jazz network graph
  1010. List of all the Gists from Mike Bostock
  1011. Littrow
  1012. Live coding based on Bret Victor's Inventing on Principle talk
  1013. Loading a thumbnail into Gist for bl.ocks.org d3 graphs
  1014. Loading Adobe Photoshop ASE color palette
  1015. Lobster Catch Analyst
  1016. Log Axis
  1017. Log Axis with Zero
  1018. London D3.js Meetup #2
  1019. London d3.js Meetup #5
  1020. London d3.js User Group
  1021. London Olympics Perceptions - Donuts to Chord Diagram Transition
  1022. Long Scroll
  1023. Lorenz System
  1024. Lorenz Toy
  1025. Loupe
  1026. Loximuthal
  1027. Made with D3.js
  1028. Major League Baseball Home Runs 1995-2010
  1029. Make a bubble chart using d3.js demo
  1030. Making maps with d3.js
  1031. Mandel for Controller Bulldog Budget
  1032. Manipulating data like a boss with d3
  1033. Manual Axis Interpolation
  1034. Map from GeoJSON data with zoom/pan
  1035. Map of all M2.5+ earthquakes of the last 24h.
  1036. Map of COMIPEMS Scores
  1037. Map of Germany using D3.js and Simplify.js
  1038. Map of Italiens
  1039. Map of pro sports teams by territory
  1040. Map Projection Distortions
  1041. Map with faux-3D globe
  1042. Map Zooming
  1043. Map Zooming II
  1044. Map Zooming III
  1045. Mapbox: add vector features to your map with D3
  1046. Mapping Hate Crimes in Iran
  1047. Mapping the Melting Pot
  1048. Mapping Tours with D3 and SeatGeek
  1049. Maps and sound
  1050. Maps Garage: Exploring Map Data with Crossfilter
  1051. Marey’s Trains
  1052. Marey’s Trains II
  1053. Margin Convention
  1054. Marimekko Chart
  1055. Markov processes
  1056. Marmoset chimerism dotplot
  1057. Masking with external svg elements
  1058. MathBox animation vs d3.js enter/exit
  1059. MathJax label
  1060. Matrix Layout
  1061. Maurer No. 73
  1062. Men’s 100m Olympic champions
  1063. Mercator
  1064. Mercator Projection
  1065. Merge Sort
  1066. Merging States
  1067. Merging States II
  1068. Meshu turns your places into beautiful objects.
  1069. Messing around wih D3.js and hierarchical data
  1070. Metaevil
  1071. meteor-deployments
  1072. Metrica
  1073. Metropolitan Unemployment
  1074. Mexican Presidential Election 2012
  1075. mgrafeeds
  1076. Mike Bostock portfolio
  1077. Mike Bostock RSS
  1078. Miller Projection
  1079. Minecraft Overviewer
  1080. Minimalist example of reusable D3.js plugin
  1081. Miniviz
  1082. Minute: record of all of my keystrokes
  1083. Mirrored Easing
  1084. Misc. Examples
  1085. Miscellaneous utilities for D3.js
  1086. Mitchell's Best-Candidate
  1087. Mitchell’s Best-Candidate 1
  1088. Mitchell’s Best-Candidate 2
  1089. Mitchell’s Best-Candidate 3
  1090. MLB Hall of Fame Voting Trajectories
  1091. MN Giving Day 2012
  1092. Mobile Patent Lawsuits
  1093. Mobile Patent Suits
  1094. Modal Logic Playground
  1095. Modifying a Force Layout
  1096. Moiré Patterns
  1097. Molecule
  1098. Mollweide
  1099. Mollweide Hemispheres
  1100. Mollweide Watercolour
  1101. Monday-based Calendar
  1102. Money Wins Elections
  1103. Monotone Interpolation Bug
  1104. Monotone Line Interpolation
  1105. Monte Carlo simulation of bifurcations in the logistic map
  1106. Month Axis
  1107. More Data Visualization Libraries Based on D3.JS
  1108. More Introduction to D3
  1109. Morley's trisector theorem
  1110. Morphogenesis Simulation
  1111. Most simple d3.js stack bar chart from matrix
  1112. Mouseenter
  1113. mousewheel-zoom + click-to-center
  1114. Movie color analysis with XBMC, Boblight, Java and D3.js
  1115. Moving Histogram
  1116. Moving Squares
  1117. Mower game
  1118. Muerte Materna en Argentina
  1119. Multi-Foci Force Layout
  1120. Multi-Foci Force Layout
  1121. Multi-Foci Force Layout
  1122. Multi-Foci Force Layout
  1123. Multi-Series Line Chart
  1124. Multi-series Line Chart with Long Format Data (columns instead of rows)
  1125. Multi-Series Line to Stacked Area Chart Transition
  1126. Multi-Value Maps
  1127. Multiline chart with brushing and mouseover
  1128. Multiline with zoomooz
  1129. Multiple Area charts and a brush tool
  1130. Multiple area charts with d3.js
  1131. Multiple Leap Motions over WebSockets - YouTube
  1132. Multiple Lines grid
  1133. Multiple time-series with object constancy
  1134. Multiple visualization from the Société Typographique de Neuchâtel
  1135. My Force Directed Graph
  1136. Natural Earth
  1137. NCAA 2012 March Madness Power Rankings
  1138. Negative stacked bar chart
  1139. Nell–Hammer Projection
  1140. Nested Selections
  1141. Network of World Merchandise Trade
  1142. Neuroscience and brain stimulation publication counts
  1143. New Jersey Blocks
  1144. New Jersey State Plane
  1145. New York Block Groups
  1146. New Zealand Earthquakes Pattern of Life
  1147. Newton's balls
  1148. Newton's cradle
  1149. NFL salaries by team and position
  1150. Nick Jaffe's Polymap
  1151. No Antimeridian Cutting
  1152. Nodal is a fun way to view your GitHub network graph
  1153. Node + MySQL + JSON
  1154. Node-Link Tree
  1155. Non-contiguous Cartogram
  1156. Non-Contiguous Cartogram
  1157. Non-Contiguous Cartogram
  1158. Non-contiguous cartogram of seats allocated in the canadian House of Commons
  1159. Noob on JSON : Data for d3.js documents
  1160. Normalized Stacked Bar Chart
  1161. Number of heat stroke
  1162. Number of unique rectangle-free 4-colourings for an nxm grid
  1163. Nutrient Database Explorer
  1164. NVD3
  1165. NVD3 for BI
  1166. nvd3.py
  1167. NY Times Strikeouts Graphic, recreated using rCharts and PolychartJS
  1168. NYC Bike Share
  1169. NYC D3.js
  1170. Obesity map
  1171. Object Constancy
  1172. Object constancy with multiple sets of time-series
  1173. OECD Health Government Spending and Obesity Rates (nvd3)
  1174. offsetX / offsetY
  1175. offsetX / offsetY
  1176. Ohio State Plane (N)
  1177. Old Visualizations Made New Again
  1178. Oliver Rolle / Logarithmic Line Chart
  1179. Olympic Medal Rivalry
  1180. OMG Particles!
  1181. One Path for All Links
  1182. One System, Every Kepler Planet
  1183. One-Way Markers
  1184. Open Knowledge Festival Hashtag Graph Visualization
  1185. OpenBudget
  1186. OPHZ Zooming
  1187. ORBIS v2
  1188. Order
  1189. Ordinal Axis
  1190. Ordinal Brushing
  1191. Ordinal Tick Filtering
  1192. Ordinal Tick Filtering
  1193. Orthographic
  1194. Orthographic Clipping
  1195. Orthographic Grid
  1196. Orthographic Projection
  1197. Orthographic Shading
  1198. Orthographic to Equirectangular
  1199. Over the Decades How States Have Shifted
  1200. Pack Test
  1201. Pack Test
  1202. Pair Contribution and Selection
  1203. Pale Dawn
  1204. Pan+Zoom
  1205. Papa
  1206. Parallel Coordinates
  1207. Parallel Coordinates
  1208. Parallel Coordinates
  1209. Parallel Coordinates
  1210. Parallel coordinates with fisheye distortion
  1211. Parallel Lines and Football using Dex and D3.js
  1212. Parallel Sets
  1213. Paris Transilien
  1214. Path and Transform Transitions
  1215. Path from function 2
  1216. Path from function 3
  1217. Path Tween
  1218. path_from_function_2
  1219. Path_from_function_2
  1220. Pedigree Tree
  1221. Peirce Quincuncial
  1222. Percent women in city councils
  1223. Percentile line chart of gene expression microarrays
  1224. Percolation model
  1225. Periodic table
  1226. Periodic table
  1227. Perlin circles
  1228. Perlin Ink
  1229. Perlin Landscape
  1230. Perlin Worms
  1231. Peter Cook Web Developer
  1232. Ph.D. Thesis Progress
  1233. PhD in the Bundestag
  1234. Phylogenetic Tree of Life
  1235. Pictograms
  1236. Pie Chart
  1237. Pie Chart Update I
  1238. Pie Chart Update II
  1239. Pie chart update III
  1240. Pie chart update IV
  1241. Pie Chart Update, III
  1242. Pie Chart Update, IV
  1243. Pie Chart Update, V
  1244. Pie Chart Updating with Text
  1245. Pie Multiples
  1246. Pie Multiples with Nesting
  1247. Pimp my Tribe
  1248. Pixymaps (Dragging)
  1249. Pixymaps (Scrolling)
  1250. Placename patterns
  1251. Places in the Game of Thrones
  1252. Plan du métro interactif
  1253. Plan interactif du métro
  1254. Planarity
  1255. Planck-cl
  1256. Plant Hardiness Zones
  1257. Plot.io (swallowed by Platfora)
  1258. Plotly: create graphics, analyze with Python, annotate and share
  1259. Plotsk: A python/coffeescript/d3.js-based library for plotting data in a web browser
  1260. Población de Argentina, Experimento D3.js
  1261. Poincaré Disc
  1262. Point-Along-Path Interpolation
  1263. Point-Along-Path Interpolation
  1264. Polar Azimuthal Equal-area
  1265. Polar Plot
  1266. PolarClock
  1267. Polls on the 2012 U.S. Election
  1268. Polybrush.js
  1269. Polychart: A browser-based platform for exploring data and creating charts
  1270. Polyconic Projection
  1271. Polygonal Lasso Selection
  1272. Polylinear Time Scale
  1273. Polymaps / Andrew Mager
  1274. Polymaps / Andrew Mager
  1275. Polymaps / Andrew Mager
  1276. Polymaps / Andrew Mager
  1277. Polymaps / Heatmap
  1278. Polymaps / Procedural Perlin
  1279. Polymaps + D3
  1280. Polymaps + D3, Part 2
  1281. Polymaps bad projection example
  1282. polymaps.appspot.com
  1283. Poor Anti-Aliasing in SVG #1
  1284. Poor Anti-Aliasing in SVG #2
  1285. Population Choropleth
  1286. Population of the cantons and of the 10 largest cities of Switzerland
  1287. Population Pyramid
  1288. Portfolio
  1289. Portrait in Chinese ascii: Chris Viau
  1290. Portrait in Chinese ascii: EJFox
  1291. Predsjednik Republike Srpske
  1292. Presentation on Visualizing Data in D3.js and mapping tools at NetTuesday
  1293. Price Changes: animated dimple.js chart
  1294. Profils des cyclistes
  1295. Programmatic Pan+Zoom
  1296. Progress Events
  1297. Project Groups - IS428: Visual Analytics for Business Intelligence
  1298. Project to Bounding Box
  1299. Projected Choropleth
  1300. Projected TopoJSON
  1301. Projection Contexts
  1302. Projection Transitions
  1303. Proof of Pythagoras's Theorem
  1304. Proportion of Foreign Born in Large Cities: 1900
  1305. Prose-only Blocks
  1306. Prototype Chart Template (WIP)
  1307. Prototype: d3.geo
  1308. Protovis / David Karr
  1309. Protovis / Nelson Minar
  1310. Protovis / Quomo Pete
  1311. Pseudo-Demers Cartogram
  1312. Pseudo-Dorling Cartogram
  1313. Psi man
  1314. Public Interest Evaluation Project
  1315. Pushing D3.js commands to the browser from iPython
  1316. Pyramid charts: demographic transition in the US
  1317. Python-NVD3
  1318. Q-Q Plots
  1319. Quadratic Koch Island Simplification
  1320. Quadtree
  1321. Quadtree Madness Round 2
  1322. Quartic Authalic
  1323. Quartile plots
  1324. Quartile plots with outliers
  1325. Queue.js Demo
  1326. Quick Charting with D3js
  1327. Quick scatterplot tutorial for d3.js
  1328. Quicksort
  1329. Radar chart
  1330. Radial Arc Diagram
  1331. Rainbow Colors
  1332. Rainbow showing how to use mask and clipPath
  1333. Rainbow Worm
  1334. Rainbows are Harmful
  1335. Raindrops
  1336. Rainflow
  1337. Random Arboretum
  1338. Random Points on a Sphere
  1339. Random Tree
  1340. Random Walk in Configuration Space
  1341. Raster & Vector Zoom
  1342. Raster Reprojection
  1343. Rbspd3
  1344. rCharts Custom, Cancer, Fantasy Football, and Three Level Mixed Effects Logistic Regression
  1345. rCharts: R interface for NVD3, Polycharts, MorrisJs and soon Rickshaw, DexCharts, Dc.js
  1346. Reactive Charts with D3.js and Reactive.js
  1347. Read File or HTTP
  1348. Real time sales
  1349. Real-time sentiment analysis of Obama 2012 victory speech
  1350. Really cool wordpress theme
  1351. Realtime Visualizations w/ D3 and Backbone
  1352. Realtime webserver stats
  1353. Recettear Item Data
  1354. Rectangular Polyconic
  1355. Rectilinear Grid
  1356. Reddit Insight
  1357. Rega: Experimental Ruby Vega generator
  1358. Reingold–Tilford Tree
  1359. Reingold–Tilford Tree
  1360. Reingold–Tilford Tree (Redirect)
  1361. Relations of football players participating in Euro 2012
  1362. Remittance flows
  1363. Remittances
  1364. Render Geographic Information in 3D With Three.js and D3.js
  1365. Render sever-side using Phantomjs
  1366. Rendering Tests
  1367. Reorderable Stacked Bar Chart
  1368. Replicating a New York Times d3.js Chart with Tableau
  1369. Reports for Simple
  1370. Reprojected Raster Tiles
  1371. Republic of Ireland - Data Explorer
  1372. Resampling Comparison
  1373. Resampling Comparison
  1374. Resizable Force Layout
  1375. Resizable Markers
  1376. Responsive D3
  1377. Responsive SVG resizing without re-rendering
  1378. Responsive TopoJSON Sizing
  1379. Retrofit Analysis Report
  1380. Reusable D3 With The Queen, Prince Charles, a Corgi and Pie Charts
  1381. Reusable D3.js, Part 1: Using AttrTween, Transitions and MV*
  1382. Reusable D3.js, Part 2: Using AttrTween, Transitions and MV*
  1383. Reusable Interdependent Interactive Histograms
  1384. Reusable Pie Charts
  1385. Reusable text rotation
  1386. Reveal animation on a tree with a clip path
  1387. Reverse Geocoding Plug-in using an offline canvas
  1388. Rhodonea Curve
  1389. RHQ - Project Documentation Editor
  1390. Rickshaw: JavaScript toolkit for creating interactive real-time graphs
  1391. Ring Cutting
  1392. Ring Extraction
  1393. Rivers of the U.S.A.
  1394. Robinson Projection
  1395. Romanian parliamentarian bubble chart. In Romanian
  1396. Rotated Axis Labels
  1397. Rotating Cluster Layout
  1398. Rotating Equirectangular
  1399. Rotating Orthographic
  1400. Rotating Orthographic
  1401. Rotating Transverse
  1402. Rotating Transverse Mercator
  1403. Rotating Voronoi
  1404. Rotating Winkel Tripel
  1405. Rounded Rectangle
  1406. Rounded Rectangles
  1407. Route Probability Exploration with Parallel Coordinates
  1408. Running Away Balloons - simple game
  1409. sammyt/see
  1410. San Francisco Contours
  1411. San Francisco Movies (Beta Version)
  1412. Sankey Diagram
  1413. Sankey diagram with cycles
  1414. Sankey diagram with horizontal and vertical node movement
  1415. Sankey Diagram with Overlap
  1416. Sankey diagrams from Excel
  1417. Sankey Diagrams of Local Economic Flows
  1418. Sankey from Excel, inherited cell colors for links
  1419. Sankey Interpolation
  1420. Sankey your Google Spreadsheet Data
  1421. saraquigley bl.ocks
  1422. SAS ANALYSIS
  1423. SAS and D3.js: a macro to draw scatter plot
  1424. SAS and D3.js: map to display US cities murder rates
  1425. Satellite Projection
  1426. Satellite Projection Test
  1427. Satellite Raster
  1428. Scale-Dependent Sampling
  1429. Scatterize
  1430. Scatterplot
  1431. Scatterplot and Heatmap
  1432. Scatterplot for K-Means clustering visualization
  1433. Scatterplot Matrix
  1434. Scatterplot Matrix
  1435. Scatterplot Matrix Brushing
  1436. Scatterplot with Multiple Series
  1437. Scatterplot with Shapes
  1438. Schelling's segregation model
  1439. School Absenteism
  1440. SCION simulation environment
  1441. Scott Murray tutorials in Japanese
  1442. Segmented Lines and Slope Coloring
  1443. Selectable elements
  1444. Selecties EK 2012
  1445. selection.order
  1446. Self-Immolation In Tibet
  1447. Sensitivity/Specificity Plot
  1448. Sequential Tiles
  1449. Series of D3.js video tutorials
  1450. Set Partitions
  1451. Seven years of SSLC in Karnataka
  1452. Shape of My Library — Comics
  1453. Shape Tweening
  1454. Shared Data
  1455. SHEETSEE.JS: Fill up Websites with Stuff from Google Spreasheet
  1456. Shiny and R adaptation of Mike Bostock's d3 Brushable Scatterplot
  1457. Shiny R and D3.js
  1458. Simple Bar Graph in Angular Directive with d3.js and Prototype.js
  1459. Simple D3.js Bar Chart Webcast
  1460. Simple Dashboard Example
  1461. Simple example using Vega, D3, and Jstat
  1462. Simple HTML data tables
  1463. Simple Junctions
  1464. Simple Radar Chart
  1465. Simple Reusable Bar Chart
  1466. Simple scatterplot
  1467. Simple table
  1468. Simple-map-d3
  1469. Simplex Noise Code 39 Barcode
  1470. Simplex Noise Dots
  1471. Simplifying and cleaning Shapefiles.
  1472. Sinu-Mollweide
  1473. Sinusoidal
  1474. Skillpedia: an open encyclopedia for skills
  1475. Sky Open Source, Behavioral Database
  1476. SKYFALL. Meteorite falls map.
  1477. Slippy map + extent indicator
  1478. SlopeGraph
  1479. Slopegraph lines in SVG and Canvas
  1480. Slopegraphs
  1481. Small Multiples
  1482. Small Multiples with Details on Demand
  1483. Smoke charts
  1484. Smooth Scrolling
  1485. SnakeViz: An In-Browser Python Profile Viewer
  1486. Snowden’s Route
  1487. Snowflakes
  1488. Snowflakes with D3
  1489. Social trust vs ease of doing business
  1490. Social web use in 2009
  1491. SOCR Violin Chart
  1492. Solar Terminator
  1493. Solar Terminator
  1494. SOM Animation
  1495. Sortable Bar Chart
  1496. Sortable Bar Chart
  1497. Sortable Table with Bars
  1498. Sorting Visualisations
  1499. Sparkline Directive for Angular with d3.js
  1500. Sparklines
  1501. SPARQLy GUIs: Linked Data and Semantic Web technologies
  1502. Spermatozoa
  1503. Sphere Spirals
  1504. Spherical Mercator
  1505. Spilhaus Maps
  1506. Spinny Globe
  1507. Spiral experiment
  1508. Spiral for John Hunter
  1509. Splay Tree animation with Dart D3.js and local storage
  1510. Spline Editor
  1511. Spline Transition
  1512. Split line game
  1513. Square Circle Spiral Illusion
  1514. Squares ↔ Hexagons
  1515. SRTM Tile Grabber: downloading elevation data
  1516. Stacked and grouped bar chart
  1517. Stacked Area Chart
  1518. Stacked Area via Nest
  1519. Stacked Bar Chart
  1520. Stacked Bar Chart
  1521. Stacked bar chart from a structure description of an R table
  1522. Stacked layout with time axis
  1523. Stacked Radial Area
  1524. Stacked-to-Grouped Bars
  1525. Stacked-to-Multiples
  1526. Stage rankings - Tour de France 2013
  1527. Startseite - NZZ.ch
  1528. Startup Salary & Equity Compensation
  1529. Stat 221
  1530. Stat 221
  1531. Static Force Layout
  1532. SteamGraphs and Dex
  1533. Step by Step-Road Accidents in cities by years 2010
  1534. Steps Walked per Day
  1535. Stereographic
  1536. Sticky Force-Directed Graph
  1537. Stitching States from Counties
  1538. Stowers Group Collaboration Network
  1539. Strange attractor
  1540. Strata 2013 D3 Tutorial, Speaker Deck
  1541. Streamgraph
  1542. Streamgraph
  1543. Streamgraph
  1544. Streamgraph realtime streaming mouse coordinates
  1545. Streams
  1546. Streams
  1547. Street Extent Visualization Using #d3js and CartoDB
  1548. Strikeouts Are Still Soaring
  1549. Stripe Gross Volume witth D3.js
  1550. Stroke Dash Interpolation
  1551. stroke-dasharray
  1552. Students's seating habits
  1553. style.setProperty
  1554. SugarForge: SolCRM by AlineaSol: Project Info
  1555. Summer Olympics Home Ground Advantage
  1556. Sunburst
  1557. Sunburst Layout with Labels
  1558. Sunburst Partition
  1559. Sunburst with Distortion
  1560. Sunflower Phyllotaxis
  1561. Sunlight Heatmap
  1562. Sunny side of the Earth, for any date and time
  1563. Superformula Explorer
  1564. Superformula Explorer
  1565. Superformula Tweening
  1566. Superformula Tweening
  1567. SVG feGaussianBlur
  1568. SVG foreignObject Example
  1569. SVG Geometric Zooming
  1570. SVG Group Element and D3.js
  1571. SVG Open Keynote Slides
  1572. SVG Path Cleaning
  1573. SVG Patterns
  1574. SVG resize to container
  1575. SVG Semantic Zooming
  1576. SVG Swarm
  1577. SVG to Canvas
  1578. SVG to Canvas to PNG using Canvg
  1579. Swimlane
  1580. Swiss Cantons
  1581. Swiss Topography
  1582. Symbol Map
  1583. Symbol Map
  1584. Table of Progress
  1585. Table Sorting
  1586. Table-driven plot
  1587. TAGSExplorer: Visualising Twitter graphs from a Google Spreadsheet
  1588. Talk at JS.geo 2013
  1589. Tampa Bay Rays Streamgraph
  1590. Telostats: Public bike stations in Tel Aviv
  1591. Templating ala Mustache with Chernoff faces example
  1592. Test Env
  1593. Tetris
  1594. Tetris
  1595. Text on arc path
  1596. TGI Models
  1597. The Amazing Pie
  1598. The Beautiful Table: fancy bar chart of football statistics
  1599. The business of Bond
  1600. The Concept Map
  1601. The d3 Community: How to Get Involved
  1602. The Diabetes Dashboard
  1603. The electoral map: building path to victory
  1604. The Euro Debt Crisis
  1605. The Facebook Offering: How It Compares
  1606. The first commented line is your dabblet’s title
  1607. The first thing that should be shown in any Trigonometry class
  1608. The Gist to Clone All Gists
  1609. The Holy Bible Visualizaiton
  1610. The last slice of PIE
  1611. The Music of Graphs
  1612. The open source card report
  1613. The Polya process
  1614. The Polyglots Project
  1615. The Quest for the Graphical Web
  1616. The Senate Social Network
  1617. The Sentinal project
  1618. The Story of The US Told In 141 Maps
  1619. The Sun’s View of the Earth
  1620. The Sun’s View of the Earth
  1621. The Wealth & Health of Nations
  1622. Thinking with Joins
  1623. Threat Report
  1624. Three Little Circles
  1625. Three-Axis Rotation
  1626. Threshold Choropleth
  1627. Threshold Encoding
  1628. Threshold Key
  1629. Time Bubble Lines
  1630. Time Series
  1631. Timeline
  1632. Timeline
  1633. Timeline of earthquake in Christchurch 2010
  1634. Times
  1635. Tissot’s Indicatrix
  1636. Tmcw’s bl.ocks
  1637. tnightingale bl.ocks
  1638. Tobler World-in-a-Square
  1639. Tooltip on a stream graph
  1640. Tooltips for D3.js visualizations
  1641. TopoJSON Examples
  1642. TopoJSON Layers
  1643. TopoJSON Parallax
  1644. TopoJSON Points
  1645. TopoJSON vectors on raster image tiles, with zoom and pan
  1646. Topology-Preserving Geometry Simplification
  1647. Towards Reusable Charts
  1648. TradeArc - Arc Diagram of Offseason NHL Trades
  1649. Traffic entering stations in Paris
  1650. Traffix jitsu
  1651. Transform Interpolation
  1652. Transform Transitions
  1653. Transition End
  1654. Transition Example
  1655. Transition from a streamgraph to multiple area charts
  1656. Transition Speed Test
  1657. TransportView
  1658. Transverse Mercator
  1659. Transverse Mercator
  1660. Transversing Equirectangular
  1661. Tree Layout from CSV
  1662. Tree layout mods
  1663. Tree Layout Orientations
  1664. Treemap
  1665. Treemap
  1666. Tributary
  1667. Tributary, optical_illusion_001_motion2
  1668. Tributary, simple globe canvas
  1669. Trisul Network Analytic
  1670. TruliaTrends
  1671. TruliaTrends
  1672. Try D3 Now
  1673. Trying out D3’s geographic features
  1674. Tübingen
  1675. Tufte's slope graphs
  1676. Tweening Polygons
  1677. Tweitgeist: Live Top Hashtags on Twitter
  1678. Twitter Activity During Hurricane Sandy
  1679. Twitter Influencer Visualization
  1680. Twitter SVG Logo
  1681. Two Point Equidistant
  1682. Two Point Equidistant
  1683. Two Tables, Understanding D3 Selections
  1684. U.S. Airports
  1685. U.S. Counties TopoJSON
  1686. U.S. Counties TopoJSON Mesh
  1687. U.S. Land TopoJSON
  1688. U.S. Population Pyramid
  1689. U.S. Rivers
  1690. U.S. State Mesh
  1691. U.S. States TopoJSON
  1692. U.S. TopoJSON
  1693. U.S. TopoJSON
  1694. U.S. Urban Areas
  1695. Uber Rides by Neighborhood
  1696. UK University Statistics
  1697. UK Wind
  1698. UMLS (Unified Medical Language System) Visualizer
  1699. UN Global Pulse 2010 Visualization
  1700. Underscore’s Equivalents in D3
  1701. Understanding the D3 Parallel Plot Example
  1702. Unemployment ranked with horizontal bars
  1703. Unit circle animation
  1704. United Kingdom Peace Index
  1705. University of Washington Departments
  1706. Unknown Pleasures
  1707. Untitled-2
  1708. Update-Only Transition
  1709. Urban bus races
  1710. Urban Water Explorer
  1711. US Budget
  1712. US Census Visualization
  1713. US Elections 2012 / Twitter
  1714. US energy consumption since 1775
  1715. US History in Maps
  1716. US, CA, MX and PR
  1717. Use Inkscape shapes in D3.js tree diagram
  1718. Use the Force! Slides
  1719. Use the Force! Video
  1720. Using and Abusing the force
  1721. Using d3 visualization for fraud detection and trending
  1722. Using D3, backbone and tornado to visualize histograms of a csv file
  1723. Using D3.js to Brute Force the Pirate Puzzle - Azundo Design
  1724. Using Inkscape with d3
  1725. Using Plunker for development and hosting your D3.js creations
  1726. Using Selections in D3 to Make Data-Driven Visualizations
  1727. Using SMASH for custom D3.js builds
  1728. Using SVG and canvas on the same force-directed layout
  1729. Using SVG Gradients and Filters With d3.js
  1730. Using the D3.js Visualization Library with AngularJS
  1731. UT1 - UTC
  1732. uvCharts
  1733. Van der Grinten II
  1734. Van der Grinten III
  1735. Van der Grinten IV
  1736. Van der Grinten Projection
  1737. Van Wijk and Nuij Zooming
  1738. van Wijk Smooth Zooming
  1739. Variable-width Histogram
  1740. Various visualisations especially with d3.geo
  1741. Vector Tiles
  1742. Vector Tiles
  1743. Vector Tiles
  1744. Vega for time series chart with shaded blocks
  1745. Vegetable Nutrition w/ Parallel Coordinates
  1746. Vélib network visualization
  1747. Venn diagram
  1748. Venn Diagram with Clipping
  1749. Venn Diagram with Opacity
  1750. Venn Diagrams with 3+ circles
  1751. Vertical Bullet Charts
  1752. Very limited in-progress attempt to hook d3.js up to three.js
  1753. Veteran Survival Data
  1754. Video tutorials in Japanese
  1755. Viewing OpenLearn Mindmaps Using d3.js
  1756. Viewing Relations, Attributes, and Entities in RDF
  1757. VIM keymap
  1758. Violin: Instrumenting JavaScript
  1759. Violin/Box plots
  1760. Visual Hacker News
  1761. Visual Search
  1762. Visual Sedimentation
  1763. Visual Sedimentation Tweet
  1764. Visual Storytelling with D3: An Introduction to Data Visualization in JS
  1765. Visual.ly Meetup Recap: Introductory D3 Workshop
  1766. Visual.ly tagged D3.js
  1767. Visualising a real-time DataSift feed with Node and D3.js
  1768. Visualising Change in Presidential Vote
  1769. Visualising ConAir Data With Cubism.js Arduino TempoDB Sinatra
  1770. Visualising New Zealand's Stolen Vehicle Database Part1
  1771. Visualising New Zealand's Stolen Vehicle Database Part2
  1772. Visualization of Beijing Air Pollution
  1773. Visualization of music suggestion
  1774. Visualize online conversion journeys
  1775. Visualize with d3js: Bring life to your data
  1776. Visualize Words on My Blog Using D3.js
  1777. Visualizing a network with Cypher and d3.js
  1778. Visualizing a newborn's feeding and diaper activity
  1779. Visualizing book production - Tools of Change for Publishing
  1780. Visualizing Data with Web Standards Slides
  1781. Visualizing Data with Web Standards Video
  1782. Visualizing document similarity over time
  1783. Visualizing Facebook Friends With D3.js
  1784. Visualizing Flight Options
  1785. Visualizing Hospital Price Data
  1786. Visualizing my entire website as a network
  1787. Visualizing NetworkX graphs in the browser using D3
  1788. Visualizing NFL Draft History
  1789. Visualizing opinons around the world (zoomable world map and interactive pie chart)
  1790. Visualizing San Francisco Home Price Ranges
  1791. Visualizing Swiss politicians on Twitter using D3.js
  1792. Visualizing the iOS App Store
  1793. Visualizing the News through Metro Maps
  1794. Visualizing The Racial Divide
  1795. Visualizing U.S. Births and Deaths in Real-Time
  1796. VizWiz: Displaying time-series data
  1797. VLS&STATS making off « @comeetie :: blog
  1798. Von der EEG Umlage befreite Unternehmen
  1799. Voronoi Boids: Voroboids
  1800. Voronoi Clipping
  1801. Voronoi Diagram
  1802. Voronoi Diagram with Force Directed Nodes and Delaunay Links
  1803. Voronoi Lookup
  1804. Voronoi paint
  1805. Voronoi Picking
  1806. Voronoi Tesselation
  1807. Voronoi Tessellation (Redirect)
  1808. Voronoi Tessellation (Redirect)
  1809. Voronoi Test (N=2)
  1810. Voronoi tests
  1811. Voronoi-based point picker
  1812. VVVV viewer
  1813. W3C Validation Errors
  1814. Wagner IV
  1815. Wagner VI Projection
  1816. Wagner VII
  1817. Walmart locations
  1818. Waterfall chart of Tendulkar's ODI career
  1819. Waterman Butterfly
  1820. Wave
  1821. We Love France: transition between the Hexagon and a heart
  1822. We're In The Money: How Much Do The Movies We Love Make?
  1823. Weather of the World
  1824. Web reporting with D3js and R using RStudio Shiny
  1825. Web Traffic as flying bubbles
  1826. Web-Based Visualization Part 1: The D3.js Key Concept
  1827. Webplatform dancing logo
  1828. WebPlatform.org SVG Logo
  1829. Website Graph Bavigation
  1830. Weeknd3
  1831. What do countries look like?
  1832. What Do You Work For?
  1833. WHat makes us happy
  1834. What Size Am I? Finding dresses that fit
  1835. When is Easter?
  1836. Which career should I invest in?
  1837. White House Petition Choropleth
  1838. Who are Rennes Metropolis inhabitants?
  1839. Who do they serve
  1840. Who Voted for Rick Santorum and Mitt Romney
  1841. Why are people shooting up our schools?
  1842. Wiechel
  1843. Wikistalker
  1844. Wimbledon
  1845. Wimbledon 2013 Player bubbles
  1846. Wind
  1847. Wind History
  1848. Winkel Tripel Graticule
  1849. Winkel Tripel Projection
  1850. Wood Grain
  1851. Word Frequency Bubble Clouds
  1852. Word Tree
  1853. Word wrap in SVG using foreignObject
  1854. WordCloud
  1855. World Bank Global Development Sprint
  1856. World Bank Global Development Sprint
  1857. World Boundaries TopoJSON
  1858. World Map
  1859. World Tour
  1860. World Wide Women's Rights
  1861. WorldBank Contract Awards
  1862. X-Value Mouseover
  1863. x3dom event test
  1864. xCharts: a D3-based library for building custom charts and graphs
  1865. XKCD-style plots
  1866. Your Tax-paid Tweets
  1867. Zensus 2011 Atlas
  1868. Zero Ticks
  1869. Zip Codes
  1870. Zipdecode
  1871. zipdecode
  1872. ZJONSSON’s bl.ocks
  1873. zmaril/d3 » src › core › nest.js
  1874. Zoom Center
  1875. Zoom to Bounding Box
  1876. Zoom Transitions
  1877. Zoomable Area
  1878. Zoomable Area Chart
  1879. Zoomable Geography
  1880. Zoomable Icicle
  1881. Zoomable map
  1882. Zoomable Pack Layout
  1883. Zoomable Partition Layout
  1884. Zoomable Sunburst
  1885. Zoomable Treemap
  1886. Zoomdata
  1887. ZUI in D3.js


非常感谢51cto读书频道的介绍!!!

参考文献:

http://book.51cto.com/art/201306/399504.htm
http://my.oschina.net/gbin1/blog/64951
http://christopheviau.com/d3list/
  • 7
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
I’ve always loved making games. Board games, role-playing games, computer games— I just love abstracting things into rules, numbers, and categories. As a natural conse- quence, I’ve always loved data visualization. Damage represented as a bar, spells repre- sented with icons, territory broken down into hexes, treasure charted out in a variety of ways. But it wasn’t until I started working with maps in grad school that I became aware of the immeasurable time and energy people have invested in understanding how to best represent data. I started learning D3 after having worked with databases, map data, and network data in a number of different desktop packages, and also coding in Flash. So I was nat- urally excited when I was introduced to D3 , a JavaScript library that deals not only with information visualization generally, but also with the very specific domains of geospa- tial data and network data. The fact that it lives in the DOM and follows web standards was a bonus, especially because I’d been working with Flash, which wasn’t known for that kind of thing. Since then, I’ve used D3 for everything, including the creation of UI elements that you’d normally associate with jQuery. When I was approached by Manning to write this book, I thought it would be the perfect opportunity for me to look deeply at D3 and make sure I knew how every little piece of the library worked, while writing a book that didn’t just introduce D3 but really dived into the different pieces of the library that I found so exciting, like mapping and networks, and tied them together. As a result, the book ended up being much longer than I expected and covers everything from the basics of generating lines and areas to using most of the layouts that come to mind when you think of data visualization. It also devotes some space to maps, networks, mobile, and optimization. In the end, I tried to give readers a broad approach to data visualization tools, whether that means maps or networks or pi
D3.js 4.x Data Visualization - Third Edition by Andrew Rininsland English | 28 Apr. 2017 | ASIN: B01MG90SSJ | 308 Pages | AZW3 | 6.6 MB Key Features Build interactive and rich graphics and visualization using JavaScript`s powerful library D3.js Learn D3 from the ground up, using the all-new version 4 of the library Gain insight into producing high-quality, extensible charts and visualizations using best practices such as writing testable, extensible code and strong typing Book Description Want to get started with impressive interactive visualizations and implement them in your daily tasks? This book offers the perfect solution-D3.js. It has emerged as the most popular tool for data visualization. This book will teach you how to implement the features of the latest version of D3 while writing JavaScript using the newest tools and technique You will start by setting up the D3 environment and making your first basic bar chart. You will then build stunning SVG and Canvas-based data visualizations while writing testable, extensible code,as accurate and informative as it is visually stimulating. Step-by-step examples walk you through creating, integrating, and debugging different types of visualization and will have you building basic visualizations (such as bar, line, and scatter graphs) in no time. By the end of this book, you will have mastered the techniques necessary to successfully visualize data and will be ready to use D3 to transform any data into an engaging and sophisticated visualization. What you will learn Map data to visual elements using D3's scales Draw SVG elements using D3's shape generators Transform data using D3's collection methods Use D3's various layout patterns to quickly generate various common types of chart Write modern JavaScript using ES2017 and Babel Explore the basics of unit testing D3 visualizations using Mocha and Chai Write and deploy a simple Node.js web service to render charts via HTML Canvas Understand what makes a good data visualization and how to use the tools at your disposal to create accurate charts About the Author Andrew Rininsland is a developer and journalist who has spent much of the last half a decade building interactive content for newspapers such as The Financial Times, The Times, Sunday Times, The Economist, and The Guardian. During his 3 years at The Times and Sunday Times, he worked on all kinds of editorial projects, ranging from obituaries of figures such as Nelson Mandela to high-profile, data-driven investigations such as The Doping Scandal the largest leak of sporting blood test data in history. He is currently a senior developer with the interactive graphics team at the Financial Times. Swizec Teller, author of Data Visualization with d3.js, is a geek with a hat. He founded his first start-up at the age of 21 years and is now looking for the next big idea as a full-stack Web generalist focusing on freelancing for early-stage start-up companies. When he isn't coding, he's usually blogging, writing books, or giving talks at various non-conference events in Slovenia and nearby countries. He is still looking for a chance to speak at a big international conference. In November 2012, he started writing Why Programmers Work At Night, and set out on a quest to improve the lives of developers everywhere. Table of Contents Getting Started with D3, ES2017, and Node.js A Primer on DOM, SVG, and CSS Shape Primitives of D3 Making Data Useful Defining the User Experience - Animation and Interaction Hierarchical Layouts of D3 The Other Layouts D3 on the Server with Canvas, Koa 2, and Node.js Having Confidence in Your Visualizations Designing Good Data Visualizations

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值