Public
Edited
Nov 7, 2022
1 fork
Insert cell
Insert cell
super_comment.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
data = FileAttachment("super_comment.csv").csv({typed: true})
Insert cell
Insert cell
Insert cell
search
Insert cell
Insert cell
function get_wenben_list(wenben) {
var t_wenben=wenben.split(")");
var wenbenObject = new Object;
for(let i of t_wenben){
if(i=='') continue;
var temp = i.split('(');
wenbenObject[temp[0]] = parseInt(temp[1]);
}
return wenbenObject;
}
Insert cell
wenben_Object = get_wenben_list(wenben)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
width = 700
Insert cell
resalted = .25
Insert cell
Insert cell
Insert cell
tooltip = d3.select('#htmlSpace').append('div').attr("class","tooltip").style("opacity",0)
Insert cell
svg_location = "#htmlSpace"
Insert cell
fill = d3.scaleOrdinal(schemeCategory10)
Insert cell
word_count={return wenben_Object}
Insert cell
word_entries = d3.entries(word_count)
Insert cell
xScale = d3.scaleLinear()
.domain([0, d3.max(word_entries, function(d) {
return d.value;
})
])
.range([12,50])
Insert cell
howManyWords = function(){
let total = word_entries.length;
let percent = Math.floor(total * resalted);
return percent;
}
Insert cell
percent = howManyWords()
Insert cell
handleMouseOut = (d) => {
tooltip.transition()
.duration(50)
.style('opacity', 0)
}
Insert cell
draw = (words) => {
let count = percent;
d3.select(svg_location).append("svg")
.attr("width", (width+10)+"px")
.attr("height", (height+10)+"px")
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("viewBox", `0 0 ${width+10} ${height+10}`)
.append("g")
.attr("transform", "translate(" + [width >> 1, height >> 1] + ")")
.attr("transform", "translate(" + (width / 2 + 20) + "," + (height / 2 + 20) + ")")
.selectAll("text")
.data(words)
.enter().append("text")
.style("font-size", function(d) { return xScale(d.value) + "px"; })
.style("font-family", "Open sans")
.attr("class", "words")
.style("fill", function(d, i) { return fill(i); })
.attr("text-anchor", "middle")
.attr("class", function(d) {
if (count >= 1) {
count -=1;
return "word main"
}
else {
return "word"
}
})
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.text(function(d,i) { return d.key; })
.on("mouseover", (d) => {
tooltip.transition()
.duration(50)
.style("class", "word-description")
.style("opacity", 1)
tooltip .html('<p>'+ d.key + '</p><p class="value">ocurrencia:'+ d.value + '</p>')
.style("left", d3.event.pageX - 50 + "px")
.style("top", (d3.event.pageY - (height + 150)) + "px")
.style("display", "inline-block")
})
.on("mouseout", handleMouseOut);
}
Insert cell
layout = cloud().size([width, height])
.timeInterval(20)
.words(word_entries)
.rotate(function(){return 0;})
.fontSize(function(d) { return xScale(+d.value); })
.text(function(d) {
return d.key;})
.font("Open sans")
.on("end", draw)
.start()
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more