StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 years ago | |
---|---|---|
.. | ||
docs | 4 years ago | |
examples | 4 years ago | |
node_modules/d3 | 4 years ago | |
.npmignore | 4 years ago | |
LICENSE | 4 years ago | |
Makefile | 4 years ago | |
README.md | 4 years ago | |
bower.json | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
README.md
d3.tip: Tooltips for d3.js visualizations
API Docs
See the API Documentation
Download Latest Version
- Development Version : 6kb / ~2kb gzipped
Install with Bower
bower install d3-tip
Quick Usage
/* Initialize tooltip */
tip = d3.tip().attr('class', 'd3-tip').html(function(d) { return d; });
/* Invoke the tip in the context of your visualization */
vis.call(tip)
vis.selectAll('rect')
.data(data)
.enter().append('rect')
.attr('width', function() { return x.rangeBand() })
.attr('height', function(d) { return h - y(d) })
.attr('y', function(d) { return y(d) })
.attr('x', function(d, i) { return x(i) })
.on('mouseover', tip.show)
.on('mouseout', tip.hide)
If you want basic styling, you can include example-styles.css
using a service like
rawgithub.com.
<link rel="stylesheet" href="//rawgithub.com/Caged/d3-tip/master/examples/example-styles.css">