-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR_queries.txt
173 lines (113 loc) · 4.04 KB
/
R_queries.txt
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
167
168
169
170
171
172
173
// load the neo4j datbase
// https://nicolewhite.github.io/2014/12/17/whats-new-rneo4j.html
// https://github.com/nicolewhite/RNeo4j
install.packages("RNeo4j")
install.packages("ggplot2")
install.packages("Rcpp")
install.packages("extrafont")
install.packages("tagcloud")
# Install
install.packages("tm") # for text mining
install.packages("SnowballC") # for text stemming
install.packages("wordcloud") # word-cloud generator
install.packages("RColorBrewer") # color palettes
# Load
library("tm")
library("SnowballC")
library("wordcloud")
library("RColorBrewer")
neo4j = startGraph("http://neo4j:sakiss@localhost:7474/db/data/")
query = "
MATCH (n)-[r:INGREDIENT_DE]->(s:Recette)
WITH n as Ingredient, count(r) as nombre
RETURN Ingredient.nom , nombre
ORDER BY nombre DESC
LIMIT 20
"
stats = cypher(neo4j, query)
library(ggplot2)
ggplot(stats, aes(x = reorder(Ingredient.nom, nombre), y = nombre)) +
geom_bar(stat = "identity", fill = "darkblue") +
coord_flip() +
labs(x = "Ingrédient",
y = "Nombre",
title = "Ingrédients les plus utilisés de la cuisine niçoise") +
theme(axis.text = element_text(size = 12, color = "black"),
axis.title = element_text(size = 14, color = "black"),
plot.title = element_text(size = 16, color = "black"))
//////////////////////////////////////////////
/// tag cloud
# liste des ingrédients de toutes les recettes
query = "
MATCH (n)-[r:INGREDIENT_DE]->(s:Recette)
WITH n as Ingredient, count(r) as nombre
RETURN Ingredient.nom , nombre
ORDER BY nombre DESC
LIMIT 100
"
stats = cypher(neo4j, query)
# library( extrafont )
# word cloud de tous les ingrédients
set.seed(1234)
wordcloud(words = stats$Ingredient, freq = stats$nombre, min.freq = 1,
max.words=200, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Dark2"))
///////////
// Les categories d'aliments les plus utilisées : tag cloud
MATCH (n:Ingredient)-[r]->(m:Categorie_Alimentaire)
RETURN m.nom as Categorie, COUNT(*) AS nombre
ORDER BY nombre DESC
LIMIT 10;
/// Kclustering sur les recettes
// Arbre de décision sur les ingrédients
// Tag cloud des légumes
query = "
MATCH (n:Ingredient)-[r]->(m:Recette)
where (n)-[:EST_DE_FAMILLE]-({ nom: 'Légume' })
with n , count(*) as count
order by count desc
return n.nom as Ingredient, count as nombre
"
stats = cypher(neo4j, query)
set.seed(1234)
wordcloud(words = stats$Ingredient, freq = stats$nombre, min.freq = 1,
max.words=20, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Dark2"))
/////////////////
/// Les catégories alimentaires : tag cloud
query = "
MATCH (n:Ingredient)-[r]->(m:Recette)
//where (n)-[:EST_DE_FAMILLE]-({ nom: 'Légume' })
with n , count(*) as count
order by count desc
match (n)-[:EST_DE_FAMILLE]->(c:Categorie_Alimentaire)
with c, count(*) as count
return c.nom as categorie, count as nombre
order by nombre desc
"
stats = cypher(neo4j, query)
set.seed(1234)
wordcloud(words = stats$categorie, freq = stats$nombre, min.freq = 1,
max.words=20, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Dark2"))
///////////////////////////////
// histogramme du nombre d'aliments par catégorie
/////////////////////////////////
// Camembert des ingrédients utilisés par catégorie
///////////////////////////////////
// Les ingrédients les plus souvent utilisés ensembles, et combien
// pour chaque ingrédeint : nb fois que x est dans une même recette avec Y
// f(x,y) = f(y,x) : nombre de fois que x et y sont dans une même recette (distance) : plus c grand plus les ingrédients sont proches
// chart : http://www.r-graph-gallery.com/274-map-a-variable-to-ggplot2-scatterplot/
// faire liste ordonnée des ingrédients : id, nom classé par ordre alpha
ail,ail-> pour chaque recette, ail est avec ail ? Si oui alors +1
Liste des ingrédients classée :
graph = startGraph("http://neo4j:sakiss@localhost:7474/db/data/")
query = "
MATCH (n:Ingredient)
with n.nom as ingredient
return ingredient
ORDER BY ingredient asc
"
cypher(graph, query)
// hierarchcal