Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Перейти к файлу
Jason Davies 1e8c12067b Clarify d3.stats.variance.
Remove TODO comment as this seems numerically robust enough.  The same two-pass
algorithm is used in Haskell's "statistics" package.
2011-05-11 17:01:51 +01:00
data Add kernel density estimation. 2011-05-10 00:11:31 +01:00
examples Add bandwidth selectors for Gaussian kernels. 2011-05-10 19:06:24 +01:00
lib Fix a bug in env-js re. insertBefore. 2011-04-09 12:03:52 -07:00
src Clarify d3.stats.variance. 2011-05-11 17:01:51 +01:00
tests Add d3.sum and d3.stats.median. 2011-05-11 08:35:12 +01:00
.gitignore Add _site to .gitignore. 2010-10-04 20:36:36 -07:00
LICENSE Fix typo in LICENSE. 2010-10-10 10:37:07 -07:00
Makefile Add d3.stats.mode. 2011-05-11 10:03:39 +01:00
README.md Merge branch 'NelsonMinar-master' 2011-03-30 09:06:50 -07:00
d3.behavior.js Fix accidental global. Thanks, @fponticelli! 2011-04-09 11:23:53 -07:00
d3.behavior.min.js Fix accidental global. Thanks, @fponticelli! 2011-04-09 11:23:53 -07:00
d3.chart.js Add bandwidth selectors for Gaussian kernels. 2011-05-10 19:06:24 +01:00
d3.chart.min.js Add bandwidth selectors for Gaussian kernels. 2011-05-10 19:06:24 +01:00
d3.csv.js Avoid RegExp bug in FF 3.6. 2011-05-01 12:31:34 -07:00
d3.csv.min.js Avoid RegExp bug in FF 3.6. 2011-05-01 12:31:34 -07:00
d3.geo.js Non-contiguous cartogram example. 2011-02-23 12:33:18 -08:00
d3.geo.min.js Replace Google's closure compiler with UglifyJS. 2011-03-25 10:28:41 +00:00
d3.geom.js Use x+y objects for quadtree points. 2011-04-19 12:19:04 -07:00
d3.geom.min.js Use x+y objects for quadtree points. 2011-04-19 12:19:04 -07:00
d3.js Add d3.sum and d3.stats.median. 2011-05-11 08:35:12 +01:00
d3.layout.js Merge remote-tracking branch 'jasondavies/histogram' into histogram 2011-05-02 18:51:36 -07:00
d3.layout.min.js Merge remote-tracking branch 'jasondavies/histogram' into histogram 2011-05-02 18:51:36 -07:00
d3.min.js Add d3.sum and d3.stats.median. 2011-05-11 08:35:12 +01:00
d3.stats.js Clarify d3.stats.variance. 2011-05-11 17:01:51 +01:00
d3.stats.min.js Use Welford's algorithm for d3.stats.mean. 2011-05-11 16:42:24 +01:00
d3.time.js Fix a couple bugs in d3.time.format. 2011-03-12 17:00:55 -08:00
d3.time.min.js Replace Google's closure compiler with UglifyJS. 2011-03-25 10:28:41 +00:00

README.md

D3

D3 is a small, free JavaScript library for manipulating HTML documents based on data. D3 can help you quickly visualize your data as HTML or SVG, handle interactivity, and incorporate smooth transitions and staged animations into your pages. You can use D3 as a visualization framework (like Protovis), or you can use it to build dynamic pages (like jQuery).

Browser Support

D3 should work on any browser, with minimal requirements such as JavaScript and the W3C DOM API. By default D3 requires the Selectors API Level 1, but you can preload Sizzle for compatibility with older browsers. Some of the included D3 examples use additional browser features, such as SVG and CSS3 Transitions. These features are not required to use D3, but are useful for visualization! D3 is not a compatibility layer. The examples should work on Firefox, Chrome (Chromium), Safari (WebKit), Opera and IE9.

Note: Chrome has strict permissions for reading files out of the local file system. Some examples use AJAX which works differently via HTTP instead of local files. For the best experience, load the D3 examples from your own machine via HTTP. Any static file web server will work; for example you can run Python's built-in server:

python -m SimpleHTTPServer 8888

Once this is running, go to: http://localhost:8888/examples/