Skip to content

Commit dfa29fc

Browse files
committed
Try some different views
1 parent 4fbfb25 commit dfa29fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
}).sort(function(a, b){//sort the terms by frequency
5656
return b.frequency-a.frequency;
5757
}).filter(function(d){return d.text; })//filter out empty words
58-
.slice(0, 20);
58+
.slice(0, 30);
5959
});
6060
return {
6161
date: date,
@@ -68,7 +68,7 @@
6868
});
6969

7070
function draw(data){
71-
var width = 1200, height = 500;
71+
var width = 800, height = 800;
7272
var ws = d3.layout.wordStream()
7373
.size([width, height])
7474
.data(data);

0 commit comments

Comments
 (0)