From d7964c9cc38ca171c31b945ef5d075ca7889fd21 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Wed, 21 May 2014 14:15:47 +0200 Subject: Option to ignore users with fewer than X tweets --- bubble.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bubble.js') diff --git a/bubble.js b/bubble.js index 773e481..81435e2 100644 --- a/bubble.js +++ b/bubble.js @@ -7,6 +7,8 @@ var I_GOT_MONEY = 0; // whether to ignore lonely users var KILL_LONERS = true; +// if positive, then users with fewer than this number of tweets will be ignored +var USER_MIN_TWEET_COUNT = 0; // if true, enable sticky nodes unless Ctrl is held. If false, stick only if // ctrl is held (the inverse). var STICKY_DEFAULT = true; @@ -138,7 +140,8 @@ function processData(data) { var infoPane = d3.select('#infobox'); preprocess(data, { - kill_loners: KILL_LONERS + kill_loners: KILL_LONERS, + minTweetCount: USER_MIN_TWEET_COUNT }); infoPane.select('.node-count').text(data.nodes.length); infoPane.select('.edge-count').text(data.edges.length); -- cgit v1.2.1