We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fbfb25 commit dfa29fcCopy full SHA for dfa29fc
1 file changed
index.html
@@ -55,7 +55,7 @@
55
}).sort(function(a, b){//sort the terms by frequency
56
return b.frequency-a.frequency;
57
}).filter(function(d){return d.text; })//filter out empty words
58
- .slice(0, 20);
+ .slice(0, 30);
59
});
60
return {
61
date: date,
@@ -68,7 +68,7 @@
68
69
70
function draw(data){
71
- var width = 1200, height = 500;
+ var width = 800, height = 800;
72
var ws = d3.layout.wordStream()
73
.size([width, height])
74
.data(data);
0 commit comments