2016-04-25 12:08:48 +02:00
|
|
|
---
|
|
|
|
|
title: '#CH420 Statistiken Onlineforumlar'
|
|
|
|
|
author: "Markus Graf"
|
|
|
|
|
output: html_document
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```{r}
|
|
|
|
|
library(mongolite)
|
|
|
|
|
m <- mongo(db="heroku_t242kdp0", collection = "supporters")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
all <- m$find('{"duplicate": { "$ne": true }}')
|
|
|
|
|
all$created_at <- as.Date(all$created_at)
|
|
|
|
|
all <- subset(all, created_at >= as.Date('2016-04-20'))
|
|
|
|
|
|
|
|
|
|
barplot(table(all$created_at), main = "Verlauf Eintraege #CH420 Total")
|
|
|
|
|
|
|
|
|
|
li_members <- subset(all, li_membership == T)
|
|
|
|
|
|
|
|
|
|
barplot(table(li_members$created_at), main = "Verlauf Eintraege #CH420 Mitgliedschaft")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ages <- table(all$age_category)
|
|
|
|
|
percentlabels<- round(100*ages/sum(ages), 1)
|
|
|
|
|
pielabels<- paste(percentlabels, "%", sep="")
|
|
|
|
|
cols <- rainbow(4)
|
|
|
|
|
pie(ages, main="Altersverteilung #CH420", col=cols, labels=pielabels, cex=0.8, sub=paste("N =", sum(ages)))
|
|
|
|
|
legend("topright", c("30-64",">64","< 18","18-30"), cex=0.8, fill=cols)
|
2018-05-29 08:48:16 +02:00
|
|
|
|
|
|
|
|
support <- table(all$support)
|
|
|
|
|
pielabels<- support
|
|
|
|
|
cols <- rainbow(2)
|
|
|
|
|
pie(support, main="Supportverteilung #CH420", col=cols, labels=pielabels, cex=0.8, sub=paste("N =", sum(support)))
|
|
|
|
|
legend("topright", c("Unterschreibende","Sammler"), cex=0.8, fill=cols)
|
2016-04-25 12:08:48 +02:00
|
|
|
```
|