forked from strainel/granddebatnational-tdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdn-dashboard.Rmd
166 lines (124 loc) · 4.24 KB
/
gdn-dashboard.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
title: "Grand débat national - tableau de bord"
output:
flexdashboard::flex_dashboard:
orientation: rows
social: menu
source_code: embed
vertical_layout: fill
runtime: shiny
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
require(shinydashboard)
require(flexdashboard)
require(knitr)
require(dplyr)
require(ggplot2)
require(Rpdb)
# Pour les graphiques "sympas"
require(htmltools)
require(htmlwidgets)
require(metricsgraphics)
require(RColorBrewer)
require(plotly)
require(DT)
require(SnowballC)
require(wordcloud)
# Chargement des données
filecache <- "cache/listevt.Rdata"
timeout_cache <- 90 # durée de vie du fichier dans le cache
if (file.exists(filecache) & difftime(Sys.time(),file.info(filecache)$mtime) < 1/24/60*timeout_cache)
load(filecache) else
source("readdata.R")
weekDaysOrder = c("lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi", "dimanche")
```
Synthèse
=======================================================================
Row
-----------------------------------------------------------------------
### événements depuis le 1er janvier
```{r}
#count <- rparsed$data$events$totalCount
valueBox(totalcount, icon="fa-calendar")
```
### événements par jour
```{r}
count <- round(totalcount / listevt %>% count (startAt) %>% nrow(), digits = 0)
valueBox(count, icon="fa-comments")
```
### événements à venir
```{r}
dt <- filter(listevt, startAt >= format(Sys.time(),"%Y-%m-%d"))
count <- dt %>% nrow()
valueBox(count, icon="fa-landmark")
```
### est la ville la plus impliquée
```{r}
dtcity <- listevt %>% count (Commune) %>% arrange(desc(n))
dtcity <- filter(dtcity, !is.na(Commune))
count <- dtcity$Commune [1]
valueBox(count, icon="fa-landmark")
```
Row
-----------------------------------------------------------------------
### Création d'événements par jour
```{r histo_createAt, echo=FALSE}
dt <- listevt %>% count (createdAt)
dt %>%
mjs_plot(x=createdAt, y=n, width=600, height=400) %>%
mjs_axis_x(xax_format="date") %>%
mjs_line(area=TRUE)
```
### Création d'événements par heure toutes journées confondues
```{r histo_hours, echo=FALSE}
dt <- as.numeric(format(strptime(listevt$node.createdAt, format="%Y-%m-%d %H:%M:%S"), "%H"))
mjs_plot(dt, width=500, height=400) %>%
mjs_histogram(bar_margin=2) %>%
mjs_labs(x_label="Heure",y_label="Nombre d'événements")
```
Row
-----------------------------------------------------------------------
### Répartition des événements entre début janvier et fin avril
```{r histo_startAt, echo=FALSE}
dt <- filter(listevt, startAt >="2019-01-10" & startAt <="2019-04-30")
dt <- dt %>% count (startAt)
dt %>%
mjs_plot(x=startAt, y=n, width=600, height=400) %>%
mjs_axis_x(xax_format="date") %>%
mjs_line(area=TRUE)
```
### Programmation des événements en fonction des jours de la semaine
```{r histo_weekdays, echo=FALSE}
dt <- listevt %>% count (weekDay)
plot_ly(dt, x=~weekDay, y=~n) %>%
layout(yaxis = list(title="Nombre d'événements"), xaxis = list(title=""))
```
Détails par commune
=======================================================================
Row
-----------------------------------------------------------------------
### Liste des communes participants
```{r dtcity, echo=FALSE}
datatable(dtcity, options=list(pageLength = 10))
```
Nuage de mots
=======================================================================
Row
-----------------------------------------------------------------------
### Mots les plus présents dans les titres des événements
```{r wordcloud, echo=FALSE}
set.seed(1234)
wordcloud(words = dfmots$word, freq = dfmots$freq, min.freq = 1,
max.words=200, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Accent"))
```
Crédits
=======================================================================
### Données
```{r , echo=FALSE}
file.info(filecache)$mtime
```
### Quelques remerciements
- Christophe B. pour son aide sur [GraphQL](https://graphql.org/).
- Les développeurs des packages [htmlwidgets](https://www.htmlwidgets.org/) et [metricsgraphics](https://metricsgraphicsjs.org/).