Skip to content

Instantly share code, notes, and snippets.

@zpydee
Created May 4, 2014 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zpydee/11516739 to your computer and use it in GitHub Desktop.
Save zpydee/11516739 to your computer and use it in GitHub Desktop.
Reddit Data Scatter Plot
{"description":"Reddit Data Scatter Plot","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"redditPics":{"default":true,"vim":false,"emacs":false,"fontSize":12},"reddit.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"ajax-caching":false,"thumbnail":"http://i.imgur.com/Fo9kjPn.png"}
var data = tributary.reddit.data.children,
svg = d3.select('svg');
// chart parameters
var chartWidth = 650,
chartHeight = 650,
showAvg = true;
var avgY = d3.mean(data, function(d) { return d.data.score; });
// scales
var maxY = d3.max(data, function (d) { return d.data.score; });
var yScale = d3.scale.linear()
.domain([0, maxY])
.range([chartHeight,0]);
var xScale = d3.scale.ordinal()
.domain(d3.range(data.length))
.rangeBands([0, chartWidth], 1);
var maxR = d3.max(data, function(d) { return d.data.num_comments; });
var rScale = d3.scale.linear()
.domain([0,maxR])
.range([3,15]);
//average line generator
var avgLineFn = d3.svg.line()
.x(function(d,i) { return xScale(d.data.created)})
.y(function(d,i) { return yScale(avgY)})
// axes
var yAxisFn = d3.svg.axis().scale(yScale).orient('left');
var xAxisFn = d3.svg.axis().scale(xScale).orient('bottom');
// render visualisation
var scatterGroup = svg.append('g').attr({transform: 'translate(50,50)'});
var circles = scatterGroup.selectAll('circle').data(data);
circles.enter().append('circle').attr({
cx: function(d,i) { return xScale(d.data.created);},
cy: function(d,i) {return yScale(d.data.score); },
r: function(d) { return rScale(d.data.num_comments);}
});
if (showAvg){
var avgLine = scatterGroup.append('path').attr({d: avgLineFn(data)});
var avgText = scatterGroup.append('text').text('Average: ' + avgY.toFixed(2)).attr({
x: xScale(0),
y: yScale(avgY) -5
});
}
var yAxis = scatterGroup.append('g');
yAxisFn(yAxis);
yAxis.attr({
transform: 'translate(0,0)'
});
{"kind": "Listing", "data": {"modhash": "", "children": [{"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {"content": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FTX22p%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FTX22p&image=http%3A%2F%2Fi.imgur.com%2FQDqHceZ.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "width": 550, "scrolling": false, "height": 550}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24o7si", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "streeter5000", "media": {"type": "imgur.com", "oembed": {"provider_url": "http://imgur.com", "description": "Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.", "title": "imgur: the simple image sharer", "thumbnail_width": 636, "height": 550, "width": 550, "html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FTX22p%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FTX22p&image=http%3A%2F%2Fi.imgur.com%2FQDqHceZ.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "author_name": "Imgur", "version": "1.0", "provider_name": "Imgur", "thumbnail_url": "http://i.imgur.com/QDqHceZ.jpg", "type": "rich", "thumbnail_height": 509, "author_url": "http://imgur.com/user/Imgur"}}, "score": 3481, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://a.thumbs.redditmedia.com/xjzFsFMtj3j8D64N.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 14602, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24o7si/fans_spend_400_to_stand_an_arms_length_away_from/", "name": "t3_24o7si", "created": 1399205983.0, "url": "http://imgur.com/a/TX22p", "author_flair_text": null, "title": "Fans spend $400 to stand an arm's length away from Avril Lavigne. Instructed not to touch or hug her. Awkward.", "created_utc": 1399177183.0, "ups": 18083, "num_comments": 3293, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24nmjd", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "dnGT", "media": null, "score": 3017, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/0J7FQcSo4cqWCI9-.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 13289, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24nmjd/found_a_very_dashing_picture_of_my_grandfather/", "name": "t3_24nmjd", "created": 1399188415.0, "url": "http://i.imgur.com/fMB6yZP.jpg", "author_flair_text": null, "title": "Found a very dashing picture of my Grandfather from his service years in WW2. He was the tail-gunner in B-24 bombers and was shot down twice behind enemy lines. On both occasions he pulled fellow crew members from the burning wreckage, saving their lives. He just turned 90 in January.", "created_utc": 1399159615.0, "ups": 16306, "num_comments": 602, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24njlg", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "ChesleaFc", "media": null, "score": 3271, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://c.thumbs.redditmedia.com/p1iRRzbWuw3axCtP.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 8469, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24njlg/what_an_eclipse_looks_like_from_space/", "name": "t3_24njlg", "created": 1399186150.0, "url": "http://i.imgur.com/SI2jOlS.jpg", "author_flair_text": null, "title": "What an eclipse looks like from space.", "created_utc": 1399157350.0, "ups": 11740, "num_comments": 181, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24nf4n", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "CopyX", "media": null, "score": 3341, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://c.thumbs.redditmedia.com/8ncKoAMVxdpX1q8z.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 21792, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24nf4n/a_stunning_picture_of_a_lion/", "name": "t3_24nf4n", "created": 1399182850.0, "url": "http://i.imgur.com/xk8X0NQ.jpg", "author_flair_text": null, "title": "A stunning picture of a lion", "created_utc": 1399154050.0, "ups": 25133, "num_comments": 655, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24nvpl", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "sluggerVII", "media": null, "score": 1509, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "default", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 502, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24nvpl/there_was_a_fire_in_our_city_tonight_a_bunch_of/", "name": "t3_24nvpl", "created": 1399195684.0, "url": "http://i.imgur.com/zIsQJ4n.jpg", "author_flair_text": null, "title": "There was a fire in our city tonight. A bunch of guys worked together to rescue a woman before the fire department got there.", "created_utc": 1399166884.0, "ups": 2011, "num_comments": 80, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24o0ah", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "MacBookPros", "media": null, "score": 1062, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://e.thumbs.redditmedia.com/alxCJHo1FDfMEJ9X.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 462, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24o0ah/my_girlfriend_took_me_on_a_helicopter_ride_in_nyc/", "name": "t3_24o0ah", "created": 1399199565.0, "url": "http://i.imgur.com/mI0s7m5.jpg", "author_flair_text": null, "title": "My girlfriend took me on a helicopter ride in NYC for my birthday :) here's my favorite pic!", "created_utc": 1399170765.0, "ups": 1524, "num_comments": 41, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {"content": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FvvvmC%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FvvvmC&image=http%3A%2F%2Fi.imgur.com%2FLJ7iPlX.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "width": 550, "scrolling": false, "height": 550}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24n6b4", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "sparta436", "media": {"oembed": {"provider_url": "http://imgur.com", "description": "Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.", "title": "Mike Gong Acid Eater marble - Imgur", "type": "rich", "thumbnail_width": 960, "height": 550, "width": 550, "html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FvvvmC%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FvvvmC&image=http%3A%2F%2Fi.imgur.com%2FLJ7iPlX.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "author_name": "ColorSeepage", "version": "1.0", "provider_name": "Imgur", "thumbnail_url": "http://i.imgur.com/LJ7iPlX.jpg", "thumbnail_height": 960, "author_url": "http://imgur.com/user/ColorSeepage"}, "type": "imgur.com"}, "score": 2990, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://b.thumbs.redditmedia.com/zWbCodkqGSm15d5U.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 3504, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24n6b4/this_is_a_marble_acid_eater_by_mike_gong/", "name": "t3_24n6b4", "created": 1399176532.0, "url": "http://imgur.com/a/vvvmC", "author_flair_text": null, "title": "This is a marble. \"Acid Eater\" by Mike Gong", "created_utc": 1399147732.0, "ups": 6494, "num_comments": 111, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imageurlhost.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24n07v", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "haysumm", "media": null, "score": 2949, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://e.thumbs.redditmedia.com/apfqGvGyDtSjrc_p.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 33657, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24n07v/verizon_sent_me_53_letters_in_the_mail_thanking/", "name": "t3_24n07v", "created": 1399172292.0, "url": "http://www.imageurlhost.com/images/xjsthpzxhy455lgvwjm.jpg", "author_flair_text": null, "title": "Verizon sent me 53 letters in the mail thanking me for subscribing to eco-friendly, paperless billing...", "created_utc": 1399143492.0, "ups": 36606, "num_comments": 1526, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {"content": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FOUPgK%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FOUPgK&image=http%3A%2F%2Fi.imgur.com%2FiIv2cjM.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "width": 550, "scrolling": false, "height": 550}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mvtb", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "delpaint", "media": {"type": "imgur.com", "oembed": {"provider_url": "http://imgur.com", "description": "Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.", "title": "Extended Photographs - Imgur", "thumbnail_width": 1387, "height": 550, "width": 550, "html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FOUPgK%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FOUPgK&image=http%3A%2F%2Fi.imgur.com%2FiIv2cjM.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "author_name": "delpaint", "version": "1.0", "provider_name": "Imgur", "thumbnail_url": "http://i.imgur.com/iIv2cjM.jpg", "type": "rich", "thumbnail_height": 1168, "author_url": "http://imgur.com/user/delpaint"}}, "score": 3212, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://e.thumbs.redditmedia.com/5QhjTx2InB1I04tj.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 18858, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mvtb/my_mom_takes_photographs_and_extends_the_rest/", "name": "t3_24mvtb", "created": 1399169134.0, "url": "http://imgur.com/a/OUPgK", "author_flair_text": null, "title": "My mom takes photographs and extends the rest with colored pencils. She would blush if she knew Reddit was seeing this!", "created_utc": 1399140334.0, "ups": 22070, "num_comments": 399, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mwnx", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "cassus_fett", "media": null, "score": 2984, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://a.thumbs.redditmedia.com/uf3CPu3Cv9bIM57l.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 14332, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mwnx/mike_rowe_and_his_new_puppy_he_rescued_yesterday/", "name": "t3_24mwnx", "created": 1399169747.0, "url": "http://i.imgur.com/Jj4wy7y.jpg", "author_flair_text": null, "title": "Mike Rowe and his new puppy he rescued yesterday", "created_utc": 1399140947.0, "ups": 17316, "num_comments": 343, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24n1uu", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "orangeman126597", "media": null, "score": 2465, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/1MKozBG5LR54Pdh-.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 2212, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24n1uu/found_something_attached_to_my_dogs_collar_when_i/", "name": "t3_24n1uu", "created": 1399173404.0, "url": "http://imgur.com/Qz8q5dI", "author_flair_text": null, "title": "Found something attached to my dog's collar when I got home today. She's not allowed on the couch.", "created_utc": 1399144604.0, "ups": 4677, "num_comments": 68, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mziv", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "victory_screech", "media": null, "score": 2463, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://b.thumbs.redditmedia.com/n9lb3vjNxE8GBp1m.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 2090, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mziv/i_see_this_guy_driving_around_my_neighborhood/", "name": "t3_24mziv", "created": 1399171816.0, "url": "http://i.imgur.com/89Wd6BA.jpg", "author_flair_text": null, "title": "I see this guy driving around my neighborhood everyday.", "created_utc": 1399143016.0, "ups": 4553, "num_comments": 189, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {"content": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FFHHtZ%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FFHHtZ&image=http%3A%2F%2Fi.imgur.com%2FBXAf5Hm.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "width": 550, "scrolling": false, "height": 550}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mtg6", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "Donkeyslapper84", "media": {"oembed": {"provider_url": "http://imgur.com", "description": "Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.", "title": "Handmade silver coin rings", "type": "rich", "thumbnail_width": 1852, "height": 550, "width": 550, "html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2FFHHtZ%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2FFHHtZ&image=http%3A%2F%2Fi.imgur.com%2FBXAf5Hm.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "author_name": "donkeyslapper84", "version": "1.0", "provider_name": "Imgur", "thumbnail_url": "http://i.imgur.com/BXAf5Hm.jpg", "thumbnail_height": 2258, "author_url": "http://imgur.com/user/donkeyslapper84"}, "type": "imgur.com"}, "score": 3036, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://c.thumbs.redditmedia.com/Rx8BqPQZUEyh3clD.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 6252, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mtg6/i_recently_picked_up_a_new_skill_here_are_some/", "name": "t3_24mtg6", "created": 1399167493.0, "url": "http://imgur.com/a/FHHtZ", "author_flair_text": null, "title": "I recently picked up a new skill. Here are some silver coin rings I made.", "created_utc": 1399138693.0, "ups": 9288, "num_comments": 434, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24ngf4", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "CommanderV", "media": null, "score": 1279, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://b.thumbs.redditmedia.com/jMVr6P-_BPROekq7.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 416, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24ngf4/completed_this_elephant_after_40_plus_hours_over/", "name": "t3_24ngf4", "created": 1399183757.0, "url": "http://imgur.com/gallery/OwwYebK", "author_flair_text": null, "title": "Completed this elephant after 40 plus hours over a span of 32 days [x-post from /r/drawing]", "created_utc": 1399154957.0, "ups": 1695, "num_comments": 49, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24ni7a", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "ForTheWolf24", "media": null, "score": 1175, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://f.thumbs.redditmedia.com/3ZGtfDviTeNCE4-q.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 332, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24ni7a/the_old_man_on_the_mountain_arguably_the_most/", "name": "t3_24ni7a", "created": 1399185048.0, "url": "http://i.imgur.com/pnYfZt0.jpg", "author_flair_text": null, "title": "The Old Man on the Mountain, arguably the most famous New Hampshire landmark, fell 11 years ago today. Rest in peace.", "created_utc": 1399156248.0, "ups": 1507, "num_comments": 73, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {"content": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2F7NPNf%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2F7NPNf&image=http%3A%2F%2Fi.imgur.com%2Fp0QNNrI.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "width": 550, "scrolling": false, "height": 550}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mtu3", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "malz_", "media": {"oembed": {"provider_url": "http://imgur.com", "description": "Imgur is home to the web's most popular image content, curated in real time by a dedicated community through commenting, voting and sharing.", "title": "Inside Google, Microsoft, Facebook and HP Data Centers - Imgur", "type": "rich", "thumbnail_width": 2000, "height": 550, "width": 550, "html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fimgur.com%2Fa%2F7NPNf%2Fembed&url=http%3A%2F%2Fimgur.com%2Fa%2F7NPNf&image=http%3A%2F%2Fi.imgur.com%2Fp0QNNrI.jpg&key=2aa3c4d5f3de4f5b9120b660ad850dc9&type=text%2Fhtml&schema=imgur\" width=\"550\" height=\"550\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>", "author_name": "Sciencegeek100", "version": "1.0", "provider_name": "Imgur", "thumbnail_url": "http://i.imgur.com/p0QNNrI.jpg", "thumbnail_height": 1333, "author_url": "http://imgur.com/user/Sciencegeek100"}, "type": "imgur.com"}, "score": 2511, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/4cD7do4U6ytvcse3.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 1858, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mtu3/the_beauty_of_data_centers/", "name": "t3_24mtu3", "created": 1399167747.0, "url": "http://imgur.com/a/7NPNf", "author_flair_text": null, "title": "The beauty of data centers", "created_utc": 1399138947.0, "ups": 4369, "num_comments": 218, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24o12e", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "Darkwwon", "media": null, "score": 410, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://a.thumbs.redditmedia.com/CYr0gQS-gI_yrKPf.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 109, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24o12e/supervising_bath_time_xpost_aww/", "name": "t3_24o12e", "created": 1399200196.0, "url": "http://i.imgur.com/n5sQuKR.png", "author_flair_text": null, "title": "Supervising bath time!! (x-post aww)", "created_utc": 1399171396.0, "ups": 519, "num_comments": 16, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24moec", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "dittidot", "media": null, "score": 2592, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://e.thumbs.redditmedia.com/9giHMPPagW3Co9iF.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 2302, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24moec/a_tight_fit/", "name": "t3_24moec", "created": 1399163750.0, "url": "http://i.imgur.com/5OJj7cc.jpg", "author_flair_text": null, "title": "A Tight Fit", "created_utc": 1399134950.0, "ups": 4894, "num_comments": 30, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mexl", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "JaxenGrey", "media": null, "score": 3313, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/dYxh8kCSDpLyX0K3.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 36728, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mexl/so_my_friend_received_a_5lb_gummi_bear_as_a_gift/", "name": "t3_24mexl", "created": 1399156259.0, "url": "http://i.imgur.com/gpKxRTk.jpg", "author_flair_text": null, "title": "So my friend received a 5lb gummi bear as a gift. Naturally, this is what he did with it...", "created_utc": 1399127459.0, "ups": 40041, "num_comments": 789, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mg9c", "gilded": 1, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "opnwyder", "media": null, "score": 2894, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://b.thumbs.redditmedia.com/hWPMXdWpsjlk0_4y.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 22440, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mg9c/i_spent_over_200_hours_painting_this_last_year/", "name": "t3_24mg9c", "created": 1399157386.0, "url": "http://i.imgur.com/oyfzTem.jpg", "author_flair_text": null, "title": "I spent over 200 hours painting this last year. This is \"The Dog of Bruge\", an oil painting by me.", "created_utc": 1399128586.0, "ups": 25334, "num_comments": 544, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mgzt", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "sale202", "media": null, "score": 2801, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/nDLpzEYp9efZguRK.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 9040, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mgzt/just_beautiful/", "name": "t3_24mgzt", "created": 1399157980.0, "url": "http://imgur.com/Ioqy8SJ", "author_flair_text": null, "title": "Just beautiful.", "created_utc": 1399129180.0, "ups": 11841, "num_comments": 311, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24mcs3", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "Jimmy_the_foot", "media": null, "score": 3195, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://b.thumbs.redditmedia.com/AbIZsM1R9LEHTlH1.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 15443, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24mcs3/a_friend_just_added_this_to_her_front_yard/", "name": "t3_24mcs3", "created": 1399154254.0, "url": "http://i.imgur.com/J57Y6k1.jpg", "author_flair_text": null, "title": "A friend just added this to her front yard.", "created_utc": 1399125454.0, "ups": 18638, "num_comments": 416, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "i.imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24o9os", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "prayforukraine", "media": null, "score": 195, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/8Tfrvjdzb8NgdLcK.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 71, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24o9os/armed_girl_at_checkpoint_ukraine_2014/", "name": "t3_24o9os", "created": 1399207824.0, "url": "http://i.imgur.com/1HYHpbp.jpg", "author_flair_text": null, "title": "Armed girl at checkpoint, Ukraine 2014", "created_utc": 1399179024.0, "ups": 266, "num_comments": 37, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24ocfa", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "Uni-Baller", "media": null, "score": 164, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://e.thumbs.redditmedia.com/UqOo67Ukx6tjLRlX.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 64, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24ocfa/my_sister_saw_this_car_while_she_was_eating_those/", "name": "t3_24ocfa", "created": 1399210668.0, "url": "http://imgur.com/TGqcZHA", "author_flair_text": null, "title": "My sister saw this car while she was eating those shark candies...", "created_utc": 1399181868.0, "ups": 228, "num_comments": 18, "visited": false, "num_reports": null, "distinguished": null}}, {"kind": "t3", "data": {"domain": "imgur.com", "banned_by": null, "media_embed": {}, "subreddit": "pics", "selftext_html": null, "selftext": "", "likes": null, "secure_media": null, "link_flair_text": null, "id": "24oay0", "gilded": 0, "secure_media_embed": {}, "clicked": false, "stickied": false, "author": "greenmushrO0oms", "media": null, "score": 176, "approved_by": null, "over_18": false, "hidden": false, "thumbnail": "http://d.thumbs.redditmedia.com/QcLjeupcQ49W4p4-.jpg", "subreddit_id": "t5_2qh0u", "edited": false, "link_flair_css_class": null, "author_flair_css_class": null, "downs": 108, "saved": false, "is_self": false, "permalink": "/r/pics/comments/24oay0/a_blow_job_for_599/", "name": "t3_24oay0", "created": 1399209146.0, "url": "http://imgur.com/ASCUDPm", "author_flair_text": null, "title": "A blow job for $5.99?", "created_utc": 1399180346.0, "ups": 284, "num_comments": 20, "visited": false, "num_reports": null, "distinguished": null}}], "after": "t3_24oay0", "before": null}}
yAxis, path, line, text {
stroke : #666666;
}
yAxis, path {
fill: none
}
yAxix, text {
fill: #666666;
font-size: 12px;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment