UNPKG

clustergrammer

Version:

This is a clustergram implemented in D3.js. I started from the example http://bost.ocks.org/mike/miserables/ and added the following features

17 lines (11 loc) 311 B
module.exports = function remove_node_cats(inst_node){ var all_props = _.keys(inst_node); _.each(all_props, function(inst_prop){ if (inst_prop.indexOf('cat-') > -1){ delete inst_node[inst_prop]; } if (inst_prop.indexOf('cat_') > -1){ delete inst_node[inst_prop]; } }); };