modules/ml-ext/ml/resources/org/apache/ignite/ml/math/d3-vector-template.html [70:90]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .attr("class", "name"); d3.selectAll("body") .append("p") .attr("class", "name") .text("Max: " + max.d) .append("span") .attr("class", "swatch") .attr("style", "background-color: rgb(" + max.r + ", " + max.g + ", " + max.b + ")"); d3.selectAll("body") .append("p") .attr("class", "name") .text("Min: " + min.d) .append("span") .attr("class", "swatch") .attr("style", "background-color: rgb(" + min.r + ", " + min.g + ", " + min.b + ")"); var svg = d3.select("body").append("svg") .attr("width", W) .attr("height", H); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - modules/ml-ext/ml/src/main/resources/org/apache/ignite/ml/math/d3-matrix-template.html [82:102]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .attr("class", "name"); d3.selectAll("body") .append("p") .attr("class", "name") .text("Max: " + max.d) .append("span") .attr("class", "swatch") .attr("style", "background-color: rgb(" + max.r + ", " + max.g + ", " + max.b + ")"); d3.selectAll("body") .append("p") .attr("class", "name") .text("Min: " + min.d) .append("span") .attr("class", "swatch") .attr("style", "background-color: rgb(" + min.r + ", " + min.g + ", " + min.b + ")"); var svg = d3.select("body").append("svg") .attr("width", W) .attr("height", H); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -