我想绘制最小均方误差函数并将该线更新为通过单击该图添加的每个新点。到目前为止一切正常,但我似乎无法删除旧线以仅绘制新线。
这是更新行的代码 - 而不是在其他地方更新的点。
Graph.prototype.update = function() {
var this_ = this;
var data = d3.csv.parse(this.collectData());
var color = d3.scale.category10();
this.svg.selectAll("lines").remove();
lines = this.svg.selectAll("lines")
.data(data)
.attr("class", "update");
color.domain(d3.keys(data[0]).filter(function(key) { return key !== "x"; }));
var lineData = color.domain().map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {x: d.x, y: +d[name]};
})
};
});
lines.enter().append("path")
.data(lineData)
.attr("class", "line")
.attr("d", function(d) { return this_.line(d.values); })
.style("stroke", function(d) { return color(d.name); });
};
到目前为止,这就是它的样子: