#! /usr/bin/env python # playing with hacker news karma ### Some calculations percent = { # % loaded users in top100 'top100_percent' : 0.0073926221630812453, # % karma of top100/total (counting pg) 'top100_karma' : 0.34701733883119079, # # So 0.07% of the users account for 34.7% of the karma # # average karma per top100 user 'karma_per_top100' : 5665.5299999999997, # average karma per loaded user 'karma_per_user' : 120.69461077844312, # average karma per loaded user NOT in the top100 # (karma.total - karma.top100) / (users.loaded - 100) 'karma_per_not_top100' : 79.39845088255008, # % of users loaded 'loaded_users' : 0.30871579523929071 } ### The data karma = { 'total' : 1632636.0, # includes pg 'top100' : 566553.0, # does not include pg 'top100_minus_pg' : 523404.0, } users = { 'total' : 43817.0, 'loaded' : 13527.0, 'top100': { 'pg' : 43149, 'nickb' : 27084, 'edw519' : 14456, 'tptacek' : 12381, 'rms' : 11560, 'robg' : 10985, 'vaksel' : 10103, 'davidw' : 9588, 'mechanical_fish' : 9573, 'iamelgringo' : 9318, 'swombat' : 9173, 'mqt' : 8242, 'nreece' : 8047, 'peter123' : 8023, 'nostrademons' : 7618, 'mattmaroon' : 7465, 'prakash' : 7395, 'Anon84' : 7287, 'bdfh42' : 7268, 'axod' : 6859, 'raganwald' : 6223, 'bootload' : 6193, 'ivankirigin' : 6163, 'mixmax' : 6158, 'kirubakaran' : 6096, 'SwellJoe' : 5941, 'jasonlbaptiste' : 5930, 'unalone' : 5661, 'sant0sk1' : 5608, 'terpua' : 5604, 'fallentimes' : 5491, 'qhoxie' : 5371, 'danw' : 5353, 'chaostheory' : 5352, 'patio11' : 5305, 'soundsop' : 5269, 'pchristensen' : 5257, 'cperciva' : 5248, 'staunch' : 5064, 'jrockway' : 5057, 'wheels' : 4960, 'twampss' : 4908, 'gruseom' : 4799, 'Alex3917' : 4706, 'DanielBMarkham' : 4661, 'timr' : 4527, 'hhm' : 4524, 'byrneseyeview' : 4446, 'gibsonf1' : 4391, 'tlrobinson' : 4368, 'henning' : 4357, 'epi0Bauqu' : 4306, 'drm237' : 4145, 'markbao' : 4096, 'ojbyrne' : 4032, 'naish' : 4021, 'jmorin007' : 4000, 'pius' : 3912, 'Tichy' : 3895, 'andreyf' : 3842, 'icey' : 3789, 'gojomo' : 3784, 'paul' : 3781, 'transburgh' : 3742, 'run4yourlives' : 3732, 'DaniFong' : 3687, 'gaius' : 3612, 'ph0rque' : 3495, 'palish' : 3475, 'mynameishere' : 3465, 'coglethorpe' : 3438, 'menloparkbum' : 3437, 'mdasen' : 3405, 'dcurtis' : 3395, 'jwilliams' : 3374, 'Prrometheus' : 3310, 'tokenadult' : 3232, 'brlewis' : 3224, 'ryanwaggoner' : 3213, 'smanek' : 3209, 'kqr2' : 3173, 'tdavis' : 3163, 'abstractbill' : 3149, 'hugh' : 3146, 'amichail' : 3062, 'alaskamiller' : 3043, 'luccastera' : 3034, 'dfranke' : 3019, 'petercooper' : 2995, 'tortilla' : 2954, 'makimaki' : 2944, 'Xichekolas' : 2923, 'aston' : 2909, 'rokhayakebe' : 2875, 'sanj' : 2863, 'brett' : 2861, 'wallflower' : 2822, 'webwright' : 2810, 'silentbicycle' : 2747, 'jgrahamc' : 2728, 'bprater' : 2720 } }