Author

Topic: /r/Bitcoin stats (Read 4562 times)

legendary
Activity: 1708
Merit: 1020
December 19, 2013, 06:23:35 AM
#37
With the new forum image proxy the chart above is not updating any more...

Here you can see the updated version:

http://blockchained.com/rbitcoinstats.png
donator
Activity: 2058
Merit: 1007
Poor impulse control.
October 28, 2013, 05:32:01 AM
#36
Here is a site that gives stats on r/bitcoin http://stattit.com/r/bitcoin/
Hmm... I can't see any interesting diagram there - am I missing something?

It just provides summary stats AFAICT.
legendary
Activity: 1708
Merit: 1020
October 28, 2013, 03:48:57 AM
#35
Here is a site that gives stats on r/bitcoin http://stattit.com/r/bitcoin/
Hmm... I can't see any interesting diagram there - am I missing something?
legendary
Activity: 1708
Merit: 1020
October 27, 2013, 03:35:02 PM
#34
Yes, but you can download stats directly from Reddit now:
http://www.reddit.com/r/Bitcoin/about/traffic.json
nice

Quote
So I don't think that I will re-enable that script.
ok

Will try to find the time to adapt my script...
administrator
Activity: 5222
Merit: 13032
October 27, 2013, 02:46:37 PM
#33
Yes, but you can download stats directly from Reddit now:
http://www.reddit.com/r/Bitcoin/about/traffic.json

So I don't think that I will re-enable that script.
legendary
Activity: 1708
Merit: 1020
October 27, 2013, 02:44:43 PM
#32
Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
I guess it's disabled because of the haxoing...
legendary
Activity: 1708
Merit: 1020
April 14, 2013, 05:16:07 PM
#31

somewhat messed up but should be updating...

Will integrate it into my site when I find the time. And also set up a graph of the forum stats - that might take a while, though.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 14, 2013, 08:17:12 AM
#30
[...]

ohoh this will need some more work to aggregate the data automatically...  but the weather is great outside Cool
Nice work!

I didn't think of aggregating the month/week/day data, great idea! Shame the daily data isn't available for the whole period, but if you start collecting now you'll have it from this point on. With lots more data points the correlation should be quite a bit more clear. From your chart it looks pretty clearly to be a log-log relationship.

legendary
Activity: 1708
Merit: 1020
April 14, 2013, 06:59:26 AM
#29


ohoh this will need some more work to aggregate the data automatically...  but the weather is great outside Cool
legendary
Activity: 1708
Merit: 1020
April 14, 2013, 05:59:23 AM
#28
 Kiss

Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
Could you also write a "latest.json" file or something? It's kinda hard to properly figure out the time the date changes (especially with freaking summer/winter time).
hero member
Activity: 504
Merit: 500
April 13, 2013, 06:31:38 AM
#27
Wow, didn't realise the subreddit was so active. Great work guys Smiley
administrator
Activity: 5222
Merit: 13032
April 12, 2013, 10:01:19 PM
#26
Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
hero member
Activity: 532
Merit: 500
FIAT LIBERTAS RVAT CAELVM
April 12, 2013, 02:50:06 PM
#25
Great stuff, Phelix.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 12, 2013, 03:42:52 AM
#24

Great, phelix! Can't wait to see what you do with it once the data is readily available. Thought about doing something similar for bitcointalk.org?
legendary
Activity: 1708
Merit: 1020
legendary
Activity: 1708
Merit: 1020
April 07, 2013, 03:54:04 PM
#22
I'm on it but will need more time... so busy.

if somebody else would do it I'd be happy.

current suggestion is not complete. not sure about the language.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 07, 2013, 01:47:07 AM
#21
On my end, it doesn't resolve properly (getaddrinfo ENOTFOUND) but maybe you'll have some luck:

Code:
// whiskers75's /r/Bitcoin Script! :)
// Coded by whiskers75 for theymos and users of the Bitcoin Forum.

var http = require('http');

var options = {
    port: 80,
    hostname: 'http://www.reddit.com',
    method: 'GET',
    path: '/r/bitcoin/about/traffic.json'
};
console.log('Requesting ' + options.hostname + options.path + ':' + options.port + ' (' + options.method + ')');
var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log(chunk);
    });
});


I think you need a way to include theymos' login details as well.
hero member
Activity: 658
Merit: 502
Doesn't use these forums that often.
April 07, 2013, 01:42:55 AM
#20
On my end, it doesn't resolve properly (getaddrinfo ENOTFOUND) but maybe you'll have some luck:

Code:
// whiskers75's /r/Bitcoin Script! :)
// Coded by whiskers75 for theymos and users of the Bitcoin Forum.

var http = require('http');

var options = {
    port: 80,
    hostname: 'http://www.reddit.com',
    method: 'GET',
    path: '/r/bitcoin/about/traffic.json'
};
console.log('Requesting ' + options.hostname + options.path + ':' + options.port + ' (' + options.method + ')');
var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log(chunk);
    });
});
hero member
Activity: 658
Merit: 502
Doesn't use these forums that often.
April 07, 2013, 01:27:55 AM
#19
I'll do it automatically if someone writes me a PHP/Python/Perl/Bash script which logs a user onto reddit, fetches http://www.reddit.com/r/Bitcoin/about/traffic.json, and then prints it to stdout.
Node.js? Tongue

I'll write one!
legendary
Activity: 1708
Merit: 1020
April 03, 2013, 07:27:34 PM
#18
I'll do it automatically if someone writes me a PHP/Python/Perl/Bash script which logs a user onto reddit, fetches http://www.reddit.com/r/Bitcoin/about/traffic.json, and then prints it to stdout.
ok. I will hopefully find the time soon and let you know. Python would be my choice.

edit:
and I see it should even be possible to do it nicely: http://www.reddit.com/dev/api

APIs are the web 3.0
legendary
Activity: 1708
Merit: 1020
April 03, 2013, 07:25:42 PM
#17
[...]
Looking at your website, I'd reckon you'd be able to create that chart yourself from the raw data without any problems. I'm not sure Theymos would be keen to post an update of the data every day though.
yeah I am pretty sure he has better things to do. like sitting on an island. Smiley

So, Theymos, should there be an easy solution for you to make this data public I would go for displaying it.
administrator
Activity: 5222
Merit: 13032
April 03, 2013, 07:22:50 PM
#16
I'll do it automatically if someone writes me a PHP/Python/Perl/Bash script which logs a user onto reddit, fetches http://www.reddit.com/r/Bitcoin/about/traffic.json, and then prints it to stdout.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 03, 2013, 07:19:38 PM
#15
Any chance of getting this data / these diagrams regularly?

So far Theymos has provided updates every sixty eight days, like clockwork. You want the updates more often? Smiley

If Theymos is able to provide updates more often and I don't have time to provide chart updates more often, I'll post an updated script to generate the charts and you'll be able to do it yourself.


yeah, I meant on a daily basis at least. Not sure how often reddit data is updated. I think I would choose the diagram that has the best correlation / the most meaning and would put it up my website.

Sounds uncomfortable.
why? of course this would have to be automatic. Grin


Not sure I'd want to put anything up my um "website" automatically Wink


Which one has the most meaning for you?

the first one I guess


Looking at your website, I'd reckon you'd be able to create that chart yourself from the raw data without any problems. I'm not sure Theymos would be keen to post an update of the data every day though.
legendary
Activity: 1708
Merit: 1020
April 03, 2013, 07:04:58 PM
#14
Any chance of getting this data / these diagrams regularly?

So far Theymos has provided updates every sixty eight days, like clockwork. You want the updates more often? Smiley

If Theymos is able to provide updates more often and I don't have time to provide chart updates more often, I'll post an updated script to generate the charts and you'll be able to do it yourself.


yeah, I meant on a daily basis at least. Not sure how often reddit data is updated. I think I would choose the diagram that has the best correlation / the most meaning and would put it up my website.

Sounds uncomfortable.
why? of course this would have to be automatic. Grin

Quote
Which one has the most meaning for you?
the first one I guess
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 03, 2013, 06:36:43 PM
#13
Any chance of getting this data / these diagrams regularly?

So far Theymos has provided updates every sixty eight days, like clockwork. You want the updates more often? Smiley

If Theymos is able to provide updates more often and I don't have time to provide chart updates more often, I'll post an updated script to generate the charts and you'll be able to do it yourself.


yeah, I meant on a daily basis at least. Not sure how often reddit data is updated. I think I would choose the diagram that has the best correlation / the most meaning and would put it up my website.

Sounds uncomfortable.

Which one has the most meaning for you?
legendary
Activity: 1708
Merit: 1020
April 03, 2013, 06:32:41 PM
#12
Any chance of getting this data / these diagrams regularly?

So far Theymos has provided updates every sixty eight days, like clockwork. You want the updates more often? Smiley

If Theymos is able to provide updates more often and I don't have time to provide chart updates more often, I'll post an updated script to generate the charts and you'll be able to do it yourself.


yeah, I meant on a daily basis at least. Not sure how often reddit data is updated. I think I would choose the diagram that has the best correlation / the most meaning and would put it up my website.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 03, 2013, 06:28:18 PM
#11
Any chance of getting this data / these diagrams regularly?

So far Theymos has provided updates every sixty eight days, like clockwork. You want the updates more often? Smiley

If Theymos is able to provide updates more often and I don't have time to provide chart updates more often, I'll post an updated script to generate the charts and you'll be able to do it yourself.

legendary
Activity: 1708
Merit: 1020
April 03, 2013, 06:22:27 PM
#10
Any chance of getting this data / these diagrams regularly?
donator
Activity: 2058
Merit: 1007
Poor impulse control.
administrator
Activity: 5222
Merit: 13032
April 02, 2013, 09:01:44 PM
#8
sr. member
Activity: 277
Merit: 250
January 28, 2013, 05:34:43 AM
#7
There definitely seems to be some steady growth!  Cheesy.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
January 28, 2013, 12:49:18 AM
#6
But wait, there's more:

hero member
Activity: 868
Merit: 1000
January 27, 2013, 08:45:39 AM
#5
Great work man! Thanks
donator
Activity: 2058
Merit: 1007
Poor impulse control.
January 27, 2013, 08:33:29 AM
#4
Now if only some stat geek gave us a fine graph over daily visitors.

https://bitcointalk.org/index.php?action=stats

An elderberry pie chart would work for me.

Here is not only the requested elderberry chart, but also the R script that generated it.

If theymos updates the data you'll be able to generate the same charts yourself (after changing the pastebin url in the script).


Code:

### reddit/r/Bitcoin stats
require(RJSONIO)
require(reshape)
require(ggplot2)

### change "pasteBinUrl" if theymos updates data
###
pasteBinUrl <- "http://pastebin.com/6kbMAAR3"
###



### functions
date.func <- function(x) ISOdate(1970,1,1)+ x$Unixtime

### download data
uniqueID <-  gregexpr("[1-9]", pasteBinUrl)[[1]]
reddit <- fromJSON(paste("http://pastebin.com/download.php?i=", substr(pasteBinUrl, uniqueID[1], uniqueID[2]), sep=''))

### format data sets for plotting

r.month <- data.frame(do.call(rbind, reddit$month))
r.day <- data.frame(do.call(rbind, reddit$day))
r.hour <- data.frame(do.call(rbind, reddit$hour))

colnames(r.month) <- c("Unixtime", paste(c("Uniques per", "Pageviews per"),"month"))
colnames(r.day) <- c("Unixtime", paste(c("Uniques per", "Pageviews per", "Subscriptions per"),"day"))
colnames(r.hour) <- c("Unixtime", paste(c("Uniques per", "Pageviews per"), "hour"))

#r.day$"Cumulative subscriptions" <- rev(c(cumsum(r.day$Subscriptions)))
r.day$Date <- date.func(r.day); r.month$Date <- date.func(r.month); r.hour$Date <- date.func(r.hour)

plot.df <- rbind(
melt(r.month[, 2:4], id="Date"),
melt(r.day[, 2:5], id="Date"),
melt(r.hour[, 2:4], id="Date")
)


#### the chart
reddit.plot <- ggplot(plot.df, aes(Date, value)) +
geom_line() +
facet_wrap(~variable, scales="free", ncol=1) +
ggtitle("r/Bitcoin statistics from theymos' data") + xlab("") + ylab("")
png(paste('reddit', Sys.Date(), '.png',sep=''),height=960*4,width=960*16/9*4/5,res=220)
reddit.plot
dev.off()

#### the end
legendary
Activity: 1918
Merit: 1570
Bitcoin: An Idea Worth Spending
January 26, 2013, 12:48:08 AM
#3
Now if only some stat geek gave us a fine graph over daily visitors.

https://bitcointalk.org/index.php?action=stats

An elderberry pie chart would work for me.
hero member
Activity: 868
Merit: 1000
January 26, 2013, 12:27:24 AM
#2
Now if only some stat geek gave us a fine graph over daily visitors.
administrator
Activity: 5222
Merit: 13032
January 24, 2013, 05:12:11 PM
#1
Someone requested that I post the /r/Bitcoin stats. Here they are in Reddit's JSON format so that you can create your own graphs:
http://pastebin.com/6kbMAAR3

The numbers in each array are, in order:
-Unix timestamp representing a day/hour/month
-Uniques
-Pageviews
-Subscriptions (omitted on time periods other than "day")
Jump to: