-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20220117-SBE-BK.Rmd
575 lines (447 loc) · 14.4 KB
/
20220117-SBE-BK.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
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
---
title: "Finding Information"
author:
- "Matthijs de Zwaan"
date: '17 January 2022'
output:
xaringan::moon_reader:
yolo: false
lib_dir: libs
css: xaringan-themer.css
nature:
ratio: '16:9'
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
knitr::opts_chunk$set(fig.retina = 3)
```
```{r xaringan-themer, include=FALSE, warning=TRUE}
library(xaringanthemer)
style_mono_accent(
base_color = "#0089CF",
base_font_size = "24px",
header_h1_font_size = "2.5rem",
header_h2_font_size = "2rem",
header_h3_font_size = "1.5rem",
title_slide_background_image = "img/lost-at-sea.png",
title_slide_background_size = "cover",
title_slide_background_position = "right",
text_bold_color = "var(--text-color)",
extra_css = list(
".title-slide h1, h2, h3" = list(
"text-align" = "left",
"vertical-align" = "top",
"text-transform" = "capitalize"
),
".title-slide h1" = list(
"margin-top" = "-110px"
),
".remark-slide-number" = list(
"display" = "none"
),
".card" = list(
"position" = "relative",
"left" = "20%",
"box-shadow" = "0 4px 8px 1px rgba(0,0,0,0.05)",
"border-radius" = "4px",
"width" = "65%",
"margin-bottom" = "15px"
),
".pull-right .card, .pull-left .card" = list(
"left" = "0",
"width" = "100%"
),
".card.left" = list(
"left" = "0",
"float" = "left"
),
".card.right" = list(
"left" = "0",
"float" = "right",
"text-align" = "left"
),
".card h2" = list(
"color" = "white",
"background-color" = "rgba(0, 137, 207, 0.4)",
"font-size" = "1.1rem",
"padding" = "5px",
"margin-top" = "0",
"margin-bottom" = "4px",
"border-radius" = "4px 4px 0 0"
),
".card ul, card ol" = list(
"margin-bottom" = "4px",
"padding-bottom" = "15px"
),
".card p" = list(
"margin" = "5px"
),
".card-small" = list(
"position" = "absolute",
"border-radius" = "4px",
"margin" = "15px",
"padding" = "5px",
"background-color" = "rgba(0, 137, 207, 0.1)"
),
".highlight" = list(
"background-color" = "rgba(136, 63, 160,.5)"
)
)
)
```
class:inverse
# Why do you need information?
--
<p><a href="https://www.menti.com/29htg42ttq" target=_blank style="color: #FFFFFF">https://www.menti.com/29htg42ttq</a></p>
<p><img src="img/mentimeter_qr_code.png"style="max-width: 25%;height: auto;"></p>
???
Icebreaker question for public
---
# Why do you need information?
.card.left[
## Context
How does this work fit into other discussions?
What arguments were made previously?
]
.card.right[
## Motivation
Why is this work important and interesting?
]
.card.left[
## Novelty
You can only argue that your work adds something new if you first show what has been done before.
]
---
class:inverse
# Where can you find information?
???
First Mentimeter questions
<!-- --- -->
<!-- name: menti -->
<!-- <iframe width="1200" height="675" src="https://www.mentimeter.com/s/c9321264cb61ef6255362c3bfb8ce45e/82dc6ad57607" title="Mentimeter"></iframe> -->
---
# Where can you find information?
<span class="card-small" style="top:48%;left:27%">Personal blogs, vlogs, etc</span>
<span class="card-small" style="top:35%;left:74%">Company websites</span>
<span class="card-small" style="top:26%;left:69%">(Inter)national organisations</span>
<span class="card-small" style="top:30%;left:11%">Newspapers & magazines</span>
<span class="card-small" style="top:60%;left:62%">Your friends after a night<br>on the town</span>
<span class="card-small" style="top:40%;left:58%">Wikipedia</span>
<span class="card-small" style="top:80%;left:22%">Political parties</span>
<span class="card-small" style="top:61%;left:26%">Social media</span>
<span class="card-small" style="top:29%;left:43%">Documentaries</span>
<span class="card-small" style="top:72%;left:51%">Academic studies</span>
???
Useful information is everywhere, but not all information is useful for all questions.
Good to look more carefully at certain aspects of information.
---
# Aspects of information
.card[
## Time versus trust
How difficult is it to check the information?
How much time does it take?
]
.card[
## Objectives
Why was the information provided?
Persuasion or information?
]
???
More menti
---
# Where can you find information?
.card[
## Search broadly
No need to limit yourself to academic studies
Different sources can answer different kinds of questions
Be aware of your information source and its limits.
]
---
# Where can you find information?
.card.left[
## Interesting topics & relevant discussions
Social media (Twitter)
Newspapers & magazines
]
.card.right[
## Opinions & points of view
NGOs, political organizations, companies
]
.card.left[
## Background info
Wikipedia
Textbooks, handbooks
]
.card.right[
## Detailed analysis, “proof”
Academic books/articles
]
---
class:inverse
# Finding information<br>from different sources
---
# Finding information<br>from different sources
<span class="card-small" style="top:48%;left:27%">Personal blogs, vlogs, etc</span>
<span class="card-small" style="top:35%;left:74%">Company websites</span>
<span class="card-small" style="top:26%;left:69%">(Inter)national organisations</span>
<span class="card-small highlight" style="top:30%;left:11%">Newspapers & magazines</span>
<span class="card-small" style="top:60%;left:62%">Your friends after a night<br>on the town</span>
<span class="card-small" style="top:40%;left:58%">Wikipedia</span>
<span class="card-small" style="top:80%;left:22%">Political parties</span>
<span class="card-small" style="top:61%;left:26%">Social media</span>
<span class="card-small" style="top:29%;left:43%">Documentaries</span>
<span class="card-small highlight" style="top:72%;left:51%">Academic studies</span>
---
# Access to information
<div class="card" style="margin-top:80px;margin-bottom:50px;">
<h2>On campus</h2>
<p>Should have access automatically</p>
<p>If not: log on to VUnet</p>
<p>But: <i>no one is on campus...</i></p>
</div>
.card[
## Off campus
Log on to VUnet
Search materials using <a href="#libsearch">Libsearch</a>
See <a href="https://ub.vu.nl/en/search-help/off-campus-access/index.aspx" target=_blank>this information</a>.
]
---
# Finding information in<br>magazines & newspapers
.card[
## Options
Browse the paper
Search the website
Search Nexis Uni
]
---
name:nexis
# Nexis Uni
<a href="http://linker2.worldcat.org/?jHome=https%3A%2F%2Fvu-nl.idm.oclc.org%2Flogin%3Furl%3Dhttp%3A%2F%2Fwww.nexisuni.com&linktype=best">![](img/nexis-uni.png)</a>
---
# Getting started with Nexis Uni
.center[
These tutorials can help you find your way in Nexis Uni.
<iframe width="420" height="315" src="https://www.youtube.com/embed/YiT94DEAcw0?controls=0"></iframe>
<iframe width="420" height="315" src="https://www.youtube.com/embed/MYaheJh57N0?controls=0"></iframe>
]
- Also see [https://libguides.vu.nl/nexis-uni]()
- [Skip ahead](#search-title) for search methods
---
# Finding academic publications
<a href="#google">
<img src="img/google-scholar.png" alt="Google Scholar logo" style="display:block;position:absolute;left:10%;top:25%;width:500;">
</a>
<a href="#libsearch">
<img src="img/libsearch.png" alt="Libsearch logo" style="display:block;position:absolute;left:30%;top:58%;width:500;">
</a>
<a href="#scopus">
<img src="img/scopus.jpg" alt="Scopus logo"
style="display:block;position:absolute;left:55%;top:75%;width:500;">
</a>
---
name:google
# Finding academic publications:<br>Google Scholar
<a href="https://scholar.google.nl/" target=_blank>
<img src="img/google-scholar.png" alt="Google Scholar logo" style="display:block; margin-left: auto;margin-right:auto; width:40%;">
</a>
<div style="position:absolute; left: 30%; width:60%; bottom:5%">
<p>😍 Easy to use</p>
<p>🤔 Results not consistent or transparent</p>
<p>🤔 Many sources, no quality assessment</p>
</div>
---
name:libsearch
# Finding academic publications:<br>VU Libsearch
<a href="https://vu.on.worldcat.org/discovery" target=_blank>
<img src="img/libsearch.png" alt="Libsearch logo" style="display:block; margin-left: auto;margin-right: auto; width:40%;">
</a>
<div style="position:absolute; left: 30%;width:60%;bottom:5%">
<p>😍 Access & availability of materials are clear</p>
<p>😍 Includes books, data, other resources</p>
<p>🤔 Not easy to use</p>
</div>
---
name:scopus
# Finding academic publications:<br>Scopus
<a href="https://libguides.vu.nl/scopus" target=_blank>
<img src="img/scopus.jpg" alt="Scopus logo" style="display:block; margin-left: auto;margin-right: auto; width:40%;">
</a>
<div style="position:absolute; left: 30%; width:60%;bottom:5%">
<p>😍 Easy to use.</p>
<p>😍 “Advanced search” very good for filtering</p>
</p>🤔 <span style="text-align:left;">Only <a href="https://en.wikipedia.org/wiki/Scholarly_peer_review" target=_blank>peer-reviewed</a> materials:<br>
  - Indication of quality<br>
  - Not very recent
</p>
</div>
--
<img src="img/recommended.png" style="opacity:.7;width:20%;position:absolute;right:20%;top:30%;z-index:1;transform:rotate(355deg);">
---
# Getting started with Scopus
.center[
<iframe width="420" height="315" src="https://www.youtube.com/embed/-VE3ADZvoUY?controls=0"></iframe>
<iframe width="420" height="315" src="https://www.youtube.com/embed/0oQ5qsDMoFE?controls=0"></iframe>
]
- Scopus provides a number of other [tutorials](https://service.elsevier.com/app/answers/detail/a_id/14799/supporthub/scopus/)
- [Useful guide](https://libguides.library.uu.nl/scopus_en/) (<strong>NB!</strong> From Utrecht University Library, links do not always work for VU students!)
- [Skip ahead](#search-title) for search methods
---
name:search-title
class:inverse
# How to search
---
layout: true
# How to search: “building blocks”
---
.pull-left[
<!-- Venn diagram 1:set up -->
<img src="img/venn-setup.svg" alt="Venn diagram" />
]
.pull-right[
.card[
## Example
How does the adoption of *CSR* standards affect *innovation*?
]
]
---
.pull-left[
<!-- Venn diagram 2:A AND B -->
<img src="img/venn-and.svg">
]
.pull-right[
.card[
## “Boolean operators”: AND
*A* AND *B*
*CSR* AND *innovation*
Selects articles that mention *both* CSR *and* innovation.
Fewer results, more precise.
]]
---
.pull-left[
<!-- Venn diagram 3:A OR B -->
<img src="img/venn-or.svg">
]
.pull-right[
.card.left[
## “Boolean operators”: OR
*A* OR *B*
*CSR* OR *innovation*
Selects articles that mention *either* CSR *or* innovation
More results, less precise.
]]
</div>
---
.pull-left[
<!-- Venn diagram 4:A AND B AND C -->
<img src="img/venn-more.svg">
]
.pull-right[
.card.left[
## “Boolean operators”
*A* AND *B* AND *C*
*CSR* AND *innovation* AND "*strategic management*"
Combine as many search terms as needed.
See <a href="https://libguides.vu.nl/a-all/search-terms">here</a> for more info
]]
???
More menti
---
<!-- Diagram: How to use AND and OR -->
<div style="display:flex; justify-content:center;">
<img src="img/and-or.svg" style="width: 90%;">
</div>
Use “AND” to combine the key concepts of your research question.
Use “OR” to combine the different terms that can be used to describe those concepts.<br>Different authors can use different words to describe similar concepts!
Start broadly, narrow down results as necessary.
---
<div class="card"><h2>Parentheses <b>(</b>...<b>)</b></h2><p>For grouping: <span style="font-family:monospace">A AND (B OR C)</span></p></div>
<div class="card"><h2>Quotes <b>"</b>...<b>"</b></h2><p>For phrases: <span style="font-family:monospace">"corporate social responsibility"</span></p></div>
<div class="card"><h2>Wildcards <b>?</b>,<b>*</b></h2><p>For one or more characters: <span style="font-family:monospace">colo?r</span></p></div>
<div class="card"><h2>Careful!</h2><p>Exact usage may differ between search engines!</p></div>
---
layout:false
name: snowball
# How to search: “snowball”
.card.left[
## Backward snowball
Which articles were used for this research?
Check the list of references at the end of an article.
]
.card.right[
## Forward snowball
How was this article used in other research?
“Cited by” options in e.g. Scopus or Google Scholar
]
---
template:snowball
<div style="position:absolute;width:100%; display:flex; justify-content:center;">
<iframe src="https://giphy.com/embed/V0cSLsFbRO7SM" width="576" height="375" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
<p><a href="https://giphy.com/gifs/V0cSLsFbRO7SM"> via GIPHY</a></p>
</div>
---
template: snowball
.card.left[
<h2 style="background-color:red">Useful, but dangerous</h2>
<p>After only two “generations”, already hundreds of references</p>
<p>Easy to get lost if you don't know what you're looking for.</p>
]
---
# A suggested workflow
<div style="display:flex; justify-content:center; align-items: center;">
<img src="img/workflow.svg" alt="A suggested workflow" width="80%">
<div>
???
Show Scopus search
---
name: tips
# Finding information: Tips & tricks
.card.left[
## Not a linear process
Adjust your search terms as needed. Takes time!
]
.card.right[
## Make a logbook!
Keep track of your searches.
Some search engines provide additional options if you make an account.
]
.card.left[
## Each search engine differs slightly.
Check the manuals
]
.card.right[
## “<a href="https://quoteinvestigator.com/2013/03/06/artists-steal/">Good artists copy; great artists steal</a>”
Good academics steal and leave fingerprints.
{{ content }}
]
---
template: tips
<span style="color:red;">Do not plagiarize!</span>
---
# Finding information: more support
.card.left[
<h2 style="text-transform:lowercase;"><a href="https://ub.vu.nl">ub.vu.nl</a></h2>
Information, opening hours, news
]
.card.right[
## <a href="https://libguides.vu.nl/">Online guides</a>
For more tips & tricks
]
.card.left[
## <a href="https://vu-nl.libcal.com/">Events & workshops</a>
Finding literature and data, reference software, ...
]
.card.right[
<h2 style="text-transform:lowercase;"><a href="mailto:vraag.ub@vu.nl">vraag.ub@vu.nl</a></h2>
For questions on access, availability, etc.
]
---
background-image:url("img/lost-at-sea.png")
background-position: center
background-size: cover
---
background-image:url("img/in-control.png")
background-position: center
background-size: cover