This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d3.json('data.json', function(data){ | |
var datasource = data; | |
//svg config | |
var w_navigator = 960; | |
var h_navigator = 130; | |
var padding = 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d3.json(path, function(data){ | |
var data_altb = d3.entries(data); | |
// console.log(data_alt) | |
// Complexity Mean | |
mean = d3.mean(data_altb, function(d){ return d.value.parameters.complexity }) | |
// Get complexity extent |