gpt4 book ai didi

javascript - 需要有关更新 D3.js 词云的帮助

转载 作者:行者123 更新时间:2023-11-28 06:09:22 24 4
gpt4 key购买 nike

我根本不是程序员,尽管我正在尝试使用 d3 编写一个词云生成器。我正在网上研究示例,到目前为止一切正常,但目前如果我单击“制作词云”按钮,它只会添加另一个词云,我希望它更新现有的词云。不过,我相信我缺乏实现这一目标的知识。你们能帮忙吗?代码如下:

$('#btn-wordcloud').click(function() {
if (codebtn_click_counter < 1) {
alert("please hit Code Data button first");
} else {

// Get all of the words
words = [];
wordscnt = [];
var data = hot.getData();
for (i = 0; i < data.length; i++) {
for (j = 1; j < data[i].length; j++) {
if (data[i][j]) {
if (words[data[i][j]]) {
words[data[i][j]]++;
} else {
words[data[i][j]] = 1;
}
}
}
}

for (word in words) {
if (word != "None" && words[word] > 2) {
var row = {
"text": word.toUpperCase(),
"size": words[word] * 15
}
wordscnt.push(row)
}
}

if (wordscnt.length > 0) {
$('#data').hide();
var fill = d3.scale.category20();
maxSize = d3.max(wordscnt, function(d) {
return d.size;
});
minSize = d3.min(wordscnt, function(d) {
return d.size;
});

var fontScale = d3.scale.linear() // scale algo which is used to map the domain to the range
.domain([minSize, maxSize]) //set domain which will be mapped to the range values
.range([15, 80]); // set min/max font size (so no matter what the size of the highest word it will be set to 40 in this case)

if (codebtn_click_counter >= 1 && click_counter == 0) {
click_counter = ++click_counter;
d3.layout.cloud().size([1000, 500])
.words(wordscnt.sort(sortWordCountObject))
//.rotate(function() { return ~~(Math.random() * 2) * 90; })
.padding(5)
.rotate(0)
.font("Impact")
//.fontSize(function(d) { return d.size; })
.fontSize(function(d) {
return fontScale(d.size)
})
.on("end", draw)
.start();
} else {
//* How do I update the svg created?

};

function draw(words) {
d3.select("#drawing").append("svg")
.attr("width", 1000)
.attr("height", 500)
.append("g")
.attr("transform", "translate(500,250)")
.selectAll("text")
.data(words)
.enter().append("text")
.style("font-size", function(d) {
return d.size + "px";
})
.style("font-family", "Expressway")
//* .style("fill", function(d, i) { return fill(i); }) *//
.attr("text-anchor", "middle")
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.text(function(d) {
return d.text;
});
}
}
}
});

最佳答案

关键在于你的draw功能。注意行 d3.select("#drawing").append("svg") 。这意味着每次调用该函数时,它都会添加另一个 SVG。现在,虽然您可以创建另一个函数来执行此操作,但也完全可以通过使用与 .data 关联的函数在同一函数中执行此操作。功能:.enter().exit() .

function draw(words) {
var words = d3.select("#drawing").selectAll("svg").data([0]).enter().append("svg")
.attr("width", 1000)
.attr("height", 500)
.append("g")
.attr("transform", "translate(500,250)")
.selectAll("text")
.data(words);

words.enter().append("text")
.style("font-family", "Expressway")
//* .style("fill", function(d, i) { return fill(i); }) *//
.attr("text-anchor", "middle")

words.style("font-size", function(d) {
return d.size + "px";
})
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.text(function(d) {
return d.text;
});

words.exit().remove();
}

关于.data()的要点:

  • 此函数使用一个数组并尝试将该数组与所选内容提供的对象进行匹配(在本例中为 selectAll("text"))。
  • .enter()只影响新对象,即数组中没有匹配对象的元素(数组元素多于对象)
  • 相反,.exit()影响没有匹配数组的对象(对象多于数组元素)
  • 只需调用 words.<function>会影响所有对象。

所以它的作用是创建单词并应用 font-familytext-anchor设置,然后更新所有文本及其关联的 font-size , transform ,和text 。最后,它会删除所有现有的单词。

关于javascript - 需要有关更新 D3.js 词云的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36552124/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com