Pages:
Author

Topic: /r/Bitcoin stats - page 2. (Read 4562 times)

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")
Pages:
Jump to: