-
Notifications
You must be signed in to change notification settings - Fork 0
/
13-mongolite.qmd
501 lines (383 loc) · 12.9 KB
/
13-mongolite.qmd
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
---
title: "`mongolite`:<br>MongoDB Client for R"
block-headings: TRUE
author: "<br/><br/><br/>Alfa Nugraha Pradana"
institute: "Prodi Statistika dan Sains Data IPB University"
footer: "[rpubs.com/alfanugraha/sta1562-p13](https://rpubs.com/alfanugraha/sta1562-p13) "
format:
revealjs:
theme: [default, style.scss]
slide-number: c/t
code-copy: true
# center-title-slide: false
code-overflow: wrap
highlight-style: a11y
height: 1080
width: 1920
logo: assets/img/LogoIPBUni.png
preview-links: auto
editor: source
---
## Outline
<br/>
- Aggregation Operations
* Aggregation Pipeline
* Map-Reduce
- `mongolite`
- R + Atlas + Twitter Apps
- GitHub Actions
# Aggregation Operations {background="#43464B"}
## Aggregation Operations
<br>
Operasi aggregation adalah sebuah operasi dimana kumpulan dokumen pada koleksi diproses dengan satu atau beberapa perintah di dalam suatu *stages* atau tahapan tertentu sehingga dapat mengeluarkan hasil olah data yang dibutuhkan. Beberapa kegunaan operasi ini:
- Mengelompokkan nilai dari beberapa dokumen
- Melakukan operasi pada suatu kelompok data agar menghasilkan nilai tunggal seperti nilai total, dan sebagainya
- Menganalisis perubahan data dari waktu ke waktu
. . .
Cara Untuk menggunakan operasi aggregation:
- [Aggregation Pipelines](https://www.mongodb.com/docs/manual/aggregation/#std-label-aggregation-pipeline-intro)
- [Single purpose aggregation methods](https://www.mongodb.com/docs/manual/aggregation/#std-label-single-purpose-agg-methods)
## Aggregation Pipeline
<br>
- Suatu Aggregation Pipeline terdiri dari satu atau lebih *stages* dalam memproses dokumen
- Setiap tahapan dapat berupa operasi misalnya seleksi dokumen, pengelompokan dokumen, dan menghitung nilai tertentu dari dokumen tersebut seperti nilai total, rata-rata, nilai maksimum, dan minimum
- Perintah yang digunakan `db.<collection>.aggregate()`
<br>
. . .
![](assets/img/pipeline.png){fig-align="center" width="1500"}
## Aggregation Pipeline Stages
<br>
Beberapa perintah *stages* yang biasa digunakan:
+---------------+-------------------------------------------------------------------------+
| Operator | Keterangan |
+===============+=========================================================================+
| `$match` | Memilih dokumen yang sesuai dengan kriteria yang diinginkan |
+---------------+-------------------------------------------------------------------------+
| `$group` | Mengelompokan dokumen berdasarkan identifier expression yang diberikan |
+---------------+-------------------------------------------------------------------------+
| `$project` | Membentuk kembali dokumen, seperti menambahkan field baru dan lainnya |
+---------------+-------------------------------------------------------------------------+
| `$sort` | Mengurutkan dokumen berdasarkan key yang diberikan |
+---------------+-------------------------------------------------------------------------+
| `$count` | Menghitung jumlah dokumennakan text |
+---------------+-------------------------------------------------------------------------+
| `$limit` | Memilih `n` dokumen pertama untuk digunakan pada pipline |
+---------------+-------------------------------------------------------------------------+
| `$skip` | Melewatkan n dokumen pertama dan sisa dokumen lainnya digunakan |
+---------------+-------------------------------------------------------------------------+
| `$lookup` | Melakukan left outer join kepada koleksi lain pada database yang sama |
+---------------+-------------------------------------------------------------------------+
| `$out` | Mengubah dokumen output dari aggregation pipeline menjadi koleksi |
+---------------+-------------------------------------------------------------------------+
::: footer
[Aggregation Pipeline Stages](https://www.mongodb.com/docs/manual/reference/operator/aggregation-pipeline/)
:::
## Stage 1: `$match`
<br>
```{{json}}
db.cities.aggregate([
{ $match : { continent: {$in: ["Asia", "Africa"]} }}
])
```
```{r}
#| eval: true
#| echo: false
library(mongolite)
collection <- "cities"
db <- "prak12"
url <- "mongodb://localhost:27017/"
cities <- mongo(collection=collection, db=db, url=url)
cities$aggregate('[{"$match": { "continent": {"$in": ["Asia", "Africa"]} }}]')
```
## Stage 2: `$sort`
<br>
```{{json}}
db.cities.aggregate([
{$match : { continent: {$in: ["Asia", "Africa"]} }},
{$sort: { population: -1 }}
])
```
```{r}
#| eval: true
#| echo: false
cities$aggregate('[{"$match": { "continent": {"$in": ["Asia", "Africa"]} }},
{"$sort": { "population": -1 }}]')
```
## `$group` & `$sort`
<br>
```{{json}}
db.cities.aggregate([
{$group: {
_id: {"continent": "$continent"},
total_population: {$sum: "$population"}
}
},
{$sort: {total_population: -1 }}
])
```
```{r}
#| eval: true
#| echo: false
cities$aggregate('[
{"$group": {
"_id": {"continent": "$continent"},
"total_population": {"$sum": "$population"}
}
},
{ "$sort": {"total_population": -1 }}
]')
```
## `$project`
```{{json}}
db.cities.aggregate([{
$project: {
"_id": 0,
"location": { "country": "$country", "continent": "$continent" },
"name": "$name",
"population": "$population"
}
}])
```
```{r}
#| eval: true
#| echo: false
cities$aggregate('[{
"$project": {
"_id": 0,
"lokasi": { "negara": "$country", "benua": "$continent" },
"kota": "$name",
"populasi": "$population"
}
}]')
```
## Menyatukan semua *stages* {.scrollable}
```{{json}}
db.cities.aggregate([
{ $match: { "continent": { $in: ["North America", "Asia"] }} },
{ $sort: { "population": -1 }},
{
$group: {
"_id": { "continent": "$continent", "country": "$country" },
"first_city": { $first: "$name" },
"highest_population": { $max: "$population" }
}
},
{ $match: { "highest_population": { $gt: 20.0 }}},
{ $sort: { "highest_population": -1 }},
{
$project: {
"_id": 0,
"location": { "country": "$_id.country", "continent": "$_id.continent" },
"most_populated_city": { "name": "$first_city", "population": "$highest_population"}
}
}
])
```
```{r}
#| eval: true
#| echo: false
cities$aggregate('[
{ "$match": { "continent": { "$in": ["North America", "Asia"] }} },
{ "$sort": { "population": -1 }},
{
"$group": {
"_id": { "continent": "$continent", "country": "$country" },
"first_city": { "$first": "$name" },
"highest_population": { "$max": "$population" }
}
},
{ "$match": { "highest_population": { "$gt": 20.0 }}},
{ "$sort": { "highest_population": -1 }},
{
"$project": {
"_id": 0,
"lokasi": { "negara": "$_id.country", "benua": "$_id.continent" },
"kota_terpadat": { "nama_kota": "$first_city", "populasi": "$highest_population"}
}
}
]')
```
## Single Purpose Aggregation Methods
- Melakukan agregasi beberapa dokumen dalam satu collection
- Sederhana tetapi tidak memiliki kemampuan seperti Aggregation Pipeline
. . .
Contoh single purpose aggregation method :
::: {style="font-size: 0.7em;"}
+---------------------------------------------+-----------------------------------------------------------------------+
| Perintah | Keterangan |
+=============================================+=======================================================================+
| `db.<collection>.estimatedDocumentCount()` | Menghasilkan perkiraan jumlah dokumen pada suatu koleksi |
+---------------------------------------------+-----------------------------------------------------------------------+
| `db.<collection>.count()` | Menghasilkan jumlah dokumen pada suatu koleksi |
+---------------------------------------------+-----------------------------------------------------------------------+
| `db.<collection>.distinct()` | Menghasilkan nilai unik dari kolom spesifik dalam array |
+---------------------------------------------+-----------------------------------------------------------------------+
:::
## Map-Reduce
![](https://www.mongodb.com/docs/manual/images/map-reduce.bakedsvg.svg){fig-align="center" width="1000"}
## Map-Reduce
<br>
- Mulai dari versi 5.0, fitur ini sudah tidak digunakan kembali
- Aggregation Pipeline dianggap memberikan kinerja dan penggunaan yang lebih baik
- Operasi Map-Reduce saat ini dapat disubstitusi dengan *aggregation pipeline stages* seperti `$group`, `$merge`, dan lainnya
- Untuk kustomisasi fungsi Map-Reduce dapat menggunakan operator aggregation `$accumulator` dan `$function`
. . .
Berbagai contoh alternatif penggunaan Aggregation Pipeline sebagai pengganti dari Map-Reduce dapat dipelajari pada laman berikut:
- [Map-Reduce to Aggregation Pipeline](https://www.mongodb.com/docs/manual/reference/map-reduce-to-aggregation-pipeline/)
- [Map-Reduce Examples](https://www.mongodb.com/docs/manual/tutorial/map-reduce-examples/)
## `mongolite`
<br>
```{r}
#| eval: true
#| echo: true
library(mongolite)
# nama koleksi
collection <- "cities"
# nama database
db <- "prak12"
# koneksi ke mongoDB
url <- "mongodb://localhost:27017/"
cities <- mongo(collection=collection, db=db, url=url)
```
Perintah `find()`
```{r}
#| eval: true
#| echo: true
cities$find()
```
::: footer
[mongolite documentation](https://jeroen.github.io/mongolite/)
:::
##
Perintah `aggregate()`
```{r}
#| eval: true
#| echo: true
cities$aggregate('[{"$match": { "continent": {"$in": ["Asia", "Africa"]} }}]')
```
##
Perintah `aggregate()` dengan menggunakan beberapa *stages*
```{r}
#| eval: true
#| echo: true
cities$aggregate('[
{ "$match": { "continent": { "$in": ["North America", "Asia"] }} },
{ "$sort": { "population": -1 }},
{
"$group": {
"_id": { "continent": "$continent", "country": "$country" },
"first_city": { "$first": "$name" },
"highest_population": { "$max": "$population" }
}
},
{ "$match": { "highest_population": { "$gt": 20.0 }}},
{ "$sort": { "highest_population": -1 }},
{
"$project": {
"_id": 0,
"lokasi": { "negara": "$_id.country", "benua": "$_id.continent" },
"kota_terpadat": { "nama_kota": "$first_city", "populasi": "$highest_population"}
}
}
]')
```
## R + Atlas + Twitter Apps
<br>
Menggunakan paket `mongolite` & `rtweet`
```{r}
library(mongolite)
library(rtweet)
```
<br>
Membangun koneksi ke Atlas
```{r}
#| eval: false
#| echo: true
onepiece_conn <- mongo(
collection = Sys.getenv("ATLAS_CLOUD_COLLECTION"),
db = Sys.getenv("ATLAS_CLOUD_DB"),
url = Sys.getenv("ATLAS_CLOUD_URL")
)
```
<br>
Menggunakan Twitter API untuk koneksi ke aplikasi robot
```{r}
#| eval: false
#| echo: true
token <- create_token(
app = Sys.getenv("TWITTER_APPS"),
consumer_key = Sys.getenv("TWITTER_CONSUMER_API_KEY"),
consumer_secret = Sys.getenv("TWITTER_CONSUMER_API_SECRET"),
access_token = Sys.getenv("TWITTER_ACCESS_TOKEN"),
access_secret = Sys.getenv("TWITTER_ACCESS_TOKEN_SECRET")
)
```
## Contoh Aplikasi Bot {.scrollable}
Membangun koneksi ke MongoDB dan mengatur pesan Twitter
```{r}
#| eval: false
#| echo: true
library(rtweet)
library(mongolite)
collection <- "cities"
db <- "prak12"
url <- "mongodb://localhost:27017/"
cities <- mongo(
collection=collection,
db=db,
url=url
)
# menyimpan data dari mongoDB ke dataframe
kota <- cities$find()
## membuat hash tag
hashtag <- c("MDS","mongoDB","populasi")
## pesan twitter
status_details <- paste0(
"Populasi kota ", kota$name[1], " di ", kota$country[1], " adalah ", kota$population[1], " juta jiwa",
"\n\n",
paste0("#", hashtag, collapse = " ")
)
```
<br>
Membuat token dan posting twitter (1)
```{r}
#| eval: false
#| echo: true
## set twitter token
## cara 1
token <- create_token(
app = "onepieceMD",
consumer_key = Sys.getenv("TWITTER_CONSUMER_API_KEY"),
consumer_secret = Sys.getenv("TWITTER_CONSUMER_API_SECRET"),
access_token = Sys.getenv("TWITTER_ACCESS_TOKEN"),
access_secret = Sys.getenv("TWITTER_ACCESS_TOKEN_SECRET")
)
## posting
post_tweet(
status = status_details,
token = token
)
```
<br>
Membuat token dan posting twitter (2)
```{r}
#| eval: false
#| echo: true
## cara 2
auth <- rtweet_app()
auth_save(auth, "twitter-auth")
bot <- rtweet_bot(
api_key = Sys.getenv("TWITTER_CONSUMER_API_KEY"),
api_secret = Sys.getenv("TWITTER_CONSUMER_API_SECRET"),
access_token = Sys.getenv("TWITTER_ACCESS_TOKEN"),
access_secret = Sys.getenv("TWITTER_ACCESS_TOKEN_SECRET")
)
## posting
post_tweet(
status = status_details,
token = bot
)
```
## GitHub Actions
![](assets/img/git-action.png){fig-align="center" width="1000"}
# Pertanyaan? {background="#43464B"}