forked from leofn/combate_desinformacao_2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
983 lines (580 loc) · 22.7 KB
/
index.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
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
---
format:
revealjs:
logo: "images/logo.png"
width: 1600
height: 900
self-contained: false
incremental: false
footer: "Slides by [Leonardo F. Nascimento](https://leofn.com) (@leofn3). Code available [on GitHub](https://github.com/LABHDUFBA/2024_labhdufrj_minicurso)"
theme: ["simple"]
slide-number: c/t
title-slide-attributes:
data-background-image: background-iframe="colored-particles/index.html"
data-background-size: cover
show-slide-number: all
hash-type: number
preview-links: false
preload-iframes: true
---
# {background-iframe="colored-particles/index.html"}
<br><br>
<div style="text-align: center; font-size: 100px;"> <strong>Métodos computacionais de pesquisa nas ciências sociais: ferramentas e possibilidades</strong> </div>
<div style="text-align: center; font-size: 60px;"> <strong>Leonardo F. Nascimento</strong> </div>
<div style="text-align: center; font-size: 50px;"> 04/07/2024 </div>
##
<div style="text-align: center; font-size: 55px;"> <strong>SOBRE MIM</strong> </div>
<br>
::: columns
::: {.column width="60%"}
- Atividades e formação:
- Professor da UFBA, coordenador do LABHDUFBA;
- 5% Químico, 10% Gestor Governamental, 20% Psicólogo, 25% Programador, 40% Cientista Social Computacional;
- R, Python, Bash, Git/Github, ElasticSearch/Kibana, Docker, Huggingface etc;
- Contatos pessoais:
- [Email](mailto:[email protected]) - [Website](https://leofn.com/) - [Twitter](https://twitter.com/leofn3) - [Github](https://github.com/leofn) - [LinkedIn](https://www.linkedin.com/in/leofn-labhdufba/)
:::
::: {.column width="35%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>LABORATÓRIO DE HUMANIDADES DIGITAIS DA UFBA</strong> </div>
<br>
::: columns
::: {.column width="60%"}
- Objetivos:
- Investigar a produção de conhecimento em Humanidades Digitais;
- Fomentar a formação de pesquisadores em métodos computacionais;
- Promover a interdisciplinaridade entre as áreas de Humanidades e Ciências Exatas.
- Contatos do LABHDUFBA:
- [Email](mailto:[email protected]) - [Website](https://labhdufba.github.io/) - [Twitter](https://twitter.com/labhdufba)
:::
::: {.column width="40%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>OBJETIVO DO MINICURSO</strong> </div>
<br>
::: {.incremental}
- Definir métodos computacionais (na pesquisa nas ciências sociais);
<br><br>
- Descrever alguns dos desafios;
<br><br>
- Apresentar as possibilidades através de casos e exemplos;
<br><br>
- Convecer vocês de que vale a pena;
<br><br>
- Sugerir caminhos e materiais por onde começar...
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>QUEBRANDO O GELO...</strong> </div>
<br>
::: columns
::: {.column width="60%"}
::: {.incremental}
- Quem são vocês?
<br><br>
- Quais ferramentas digitais/computacionais vocês usam?
<br><br>
- Por que vir neste minicurso?
:::
:::
::: {.column width="40%"}

:::
:::
##
<br><br><br><br><br><br><br><br>
<div style="text-align: center; font-size: 55px;"> <strong>MÉTODOS COMPUTACIONAIS: EM BUSCA DE UMA DEFINIÇÃO</strong> </div>
<br>
##
<div style="text-align: center; font-size: 55px;"> <strong>O que são métodos computacionais?</strong> </div>
::: {.incremental}
<br>
::: columns
::: {.column width="50%"}
<br><br>
<div style="text-align: justify;">Em resumo, uma ciência social computacional é um [campo] emergente que aproveita a capacidade de coletar e analisar dados com uma amplitude, profundidade e escala sem precedentes."</div>
<br>
[Lazer, D. et al. 2009. Computational Social Science. Science. 6 February 2009: Vol. 323, no. 5915, pp. 721-723.](https://www.science.org/doi/abs/10.1126/science.1167742)
:::
::: {.column width="50%"}

:::
:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>O que são métodos computacionais?</strong> </div>
<br>
::: columns
::: {.column width="60%"}
<br><br>
<div style="text-align: justify;">O novo campo da Ciência Social Computacional pode ser definido como a investigação interdisciplinar do universo social em várias escalas, variando de atores individuais aos grandes grupos, através do meio da computação."</div>
<br>
[Cioffi-Revilla, Claudio (2014). Introduction to Computational Social Science. Springer-Verlag, London.](https://libgen.rs/book/index.php?md5=D48D3066F996FBADAA0BDADE8B54C043)
:::
::: {.column width="40%"}

:::
:::
##
<br><br><br><br><br><br><br><br>
<div style="text-align: center; font-size: 55px;"> <strong>SOCIOGÊNESE DOS MÉTODOS COMPUTACIONAIS</strong> </div>
<br>
##
<div style="text-align: center; font-size: 55px;"> <strong>Digitalização do eu na vida cotidiana (Nascimento, 2020)</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Algoritmização de processos sociais</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Traços digitais (Howison et al. 2011, p. 769)</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Dataficação (Cukier & Mayer-Schoenberger, 2013)</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Cultura de vigilância</strong> </div>
<br>
{fig-align="center"}
##
<br><br><br><br><br><br><br><br>
<div style="text-align: center; font-size: 55px;"> <strong>EFEITOS DESTES "PROCESSOS DE DIGITALIZAÇÃO" SOBRE AS CIÊNCIAS SOCIAIS</strong> </div>
<br>
##
<div style="text-align: center; font-size: 55px;"> <strong>Andrew Abbott - Reflections on the Future of Sociology (2000)</strong> </div>
<br>
::: columns
::: {.column width="70%"}
::: {.incremental}
- **"...sociologia está lamentavelmente despreparada para lidar com esse problema: não temos nem as ferramentas analíticas nem a imaginação conceitual necessária"**
<br><br>
- "temos demasiados teóricos que não fazem nada além de pensar sobre a teoria anteriormente produzida. [...] Importantes teorias sociais sempre crescem a partir de um extenso trabalho empírico"
<br><br>
- A Sociologia precisa de uma nova e grande idéia teórica
<br><br>
- [Link para o artigo](https://doi.org/10.2307/2654383)
:::
:::
::: {.column width="30%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>Mike Savage & Roger Burrows - The Coming Crisis of Empirical Sociology (2007) - </strong> </div>
<br>
::: columns
::: {.column width="60%"}
::: {.incremental}
- Um dos artigos mais citados da sociologia (1411 citações em 2023!)
<br><br>
- Aborda as mudanças no significado da pesquisa empírica e nos repertórios metodológicos da sociologia
<br><br>
- "É a relevância das tecnologias de pesquisa empírica para a sociedade que torna a sociologia um campo de pesquisas importante socialmente"
<br><br>
- [Link para o artigo](https://journals.sagepub.com/doi/abs/10.1177/0038038507080443)
:::
:::
::: {.column width="40%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>Antropologia Digital (2012)</strong> </div>
<br><br>
::: columns
::: {.column width="60%"}
<div style="text-align: justify;">"A própria idéia de 'cultura' ou 'sociedade' não pode ser plenamente compreendida sem o reconhecimento de que os dispositivos de software e hardware constituem ativamente a individualidade, a corporeidade, a vida social, as relações sociais e as instituições."</div>
<br>
[HORST, H. A.; MILLER, D. Digital Anthropology. Bloomsbury Academic, 2012. ](https://libgen.rs/book/index.php?md5=C690089682983C375AA11E01414F917C)
:::
::: {.column width="40%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>Mudança de paradigma nas ciências sociais</strong> </div>
<br><br>
::: columns
::: {.column width="70%"}
<div style="text-align: justify;">"Apesar de todas as diferenças, ciências sociais computacionais, métodos digitais e big data compartilham uma convicção subjacente: novas fontes de dados e novas técnicas para armazenamento e análise de dados podem levar à próxima mudança de paradigma nas ciências sociais." (JUNGHERR, 2015, p.34)</div>
<br>
[JUNGHERR, A. Analyzing Political Communication with Digital Trace Data: The Role of Twitter Messages in Social Science Research. Springer, 2015.](https://libgen.rs/book/index.php?md5=BBAB3DEC198CF14E85638E8D2937D831)
:::
::: {.column width="30%"}

:::
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>FERRAMENTAS</strong> </div>
<br><br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Gerenciamento de referências bibliográficas
</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"> <strong>Gerenciamento de referências bibliográficas
</strong> </div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [https://www.zotero.org/](https://www.zotero.org/)
<br>
- ### [Zotero do Zero - Tutorial de instalação do Zotero no Windows 10](https://youtu.be/CPdhyKboKC0)
<br>
- ### [Workshop de Zotero - Ferramentas Digitais e a pesquisa em Humanidades](https://youtu.be/I5ohkh5d51Y)
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>Análise qualitativa de dados</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"><strong>Análise qualitativa de dados</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [ATLAS.ti](https://atlasti.com/)
<br>
- ### [NVivo](https://www.qsrinternational.com/nvivo-qualitative-data-analysis-software/home)
<br>
- ### [MaxQDA](https://www.maxqda.com/)
<br>
- ### [Iramuteq](http://www.iramuteq.org/)
<br>
- ### [RQDA](https://rqda.r-forge.r-project.org/)
<br>
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>Análise qualitativa de dados (ATLAS.ti)</strong></div>
<br>
::: {.incremental}
- ### [Slides para aprender o ATLAS.ti versão 7](https://prezi.com/c851ggslq3ef/atlasti-ufjf-2017-modulo-i/?present=1)
<br>
- ### [Oficina LABHDUFBA - ATLAS.ti 7 (parte 1)](https://youtu.be/wmYHvfxfM5Q)
<br>
- ### [Oficina LABHDUFBA - ATLAS.ti 7 (parte 2)](https://youtu.be/IB3ldXF1zEM)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>GIT</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"><strong>GIT</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Como instalar?](https://www.youtube.com/watch?v=PGIuYvkctj0)
<br>
- ### [Comece aqui!](https://github.com/rladies/meetup-presentations_sao-paulo/blob/master/pdf_presentations/2019-09-12-RLadies-12-Git-Github-Ana-Bastos.pdf)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"> <strong>GitHub</strong> </div>
<br>
{fig-align="center"}
##
<div style="text-align: center; font-size: 55px;"><strong>GitHub</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Git e Github para noobs das humanidades](https://www.youtube.com/watch?v=ZSevDOHWsNM)
<br>
- ### [Git e Github no RStudio](https://beatrizmilz.github.io/RLadies-Git-RStudio-2019/#1)
<br>
- ### [Git e GitHub para as Humanidades Digitais - Prof. Eric Brasil](https://www.youtube.com/watch?v=I9Atm-25fXE)
:::
##
<div style="text-align: center; font-size: 55px;"><strong>R + Rstudio</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Como instalar?](https://livro.curso-r.com/1-1-instalacao-do-r.html)
<br>
- ### [Comece aqui!](https://maryms.github.io/2019-02-R-Basics-R-LadiesSP/#1)
<br>
- ### [Onde aprender mais?](https://github.com/beatrizmilz/materiais_estudo_R)
<br>
- ### [Canal do R-Brasil no Telegram!](https://t.me/rbrasiloficial)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>R + Rstudio (plus ultra)</strong></div>
<br>
::: {.incremental}
- ### [Canal do R e RStudio 📈📊Humanidades no Telegram!](https://t.me/R_humanidades)
<br>
- ### [SICSS R/Rstudio](https://sicss.io/boot_camp/)
<br>
- ### [R for Data Science](https://r4ds.had.co.nz/index.html)
<br>
- ### [Introduction to R for Social Scientists](https://clanfear.github.io/CSSS508/)
<br>
- ### [Curso de R](https://livro.curso-r.com/2-rstudio.html)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Python</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Como instalar?](http://python.org.br/instalacao-windows/)
<br>
- ### [Comece aqui!](https://leofn.github.io/oficina-python/#/)
<br>
- ### [Onde aprender mais?](https://pythonhumanities.com/python-for-dh-course/)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Análise de redes: Gephi</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Como instalar?](https://ibpad.com.br/comunicacao/aprenda-a-instalar-o-gephi/)
<br>
- ### [Comece aqui!](https://seinecle.github.io/gephi-tutorials/generated-pdf/simple-project-from-a-to-z-en.pdf)
<br>
- ### [Preparando seus dados: Table 2 Net](https://medialab.github.io/table2net/)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Ferramentas de raspagem para Instagram</strong></div>
<br>
::: {.incremental}
- ### [Instaloader](https://instaloader.github.io/)
<br>
- ### Após instalar o Python 3 (e devidamente colocado no PATH do Windows!
<br>
- ### pip ou pip3 install instaloader
<br>
- ### DIGITE após "C:\diretorio>" .---> instaloader profile perfil_sem_@
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Ferramentas para análise de texto: Voyant Tools</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Como instalar?](https://voyant-tools.org/)
<br>
- ### [Comece aqui!](http://www.larhud.ibict.br/index.php?title=Voyant_Tools)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Digital Methods Intiative</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Digital Methods Intiative](Digital Methods Initiative)
<br>
- ### [Lista de ferramentas](https://wiki.digitalmethods.net/Dmi/ToolDatabase)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Programming Historian</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [Site do Programming Historian](https://programminghistorian.org/pt/)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>SICSS - Summer Institute in Computational Social Science</strong></div>
<br>
::: {.incremental}
- ### Por que? Para que?
<br>
- ### [SICSS - SSummer Institute in Computational Social Science](https://sicss.io/curriculum)
<br>
:::
##
<br><br><br><br><br><br><br><br>
<div style="text-align: center; font-size: 55px;"> <strong>ALGUNS CASOS/PRODUTOS</strong> </div>
<br>
##
<br><br><br><br><br><br><br><br>
<div style="text-align: center; font-size: 55px;"> <strong>DESAFIOS</strong> </div>
<br>
##
<div style="text-align: center; font-size: 55px;"><strong>Produzir uma Ciência Social Computacional crítica...</strong></div>
<br>
::: {.incremental}
- ### ...dos datasets
<br>
- ### ...das ferramentas
<br>
- ### ...que articule teoria social e métodos computacionais
<br>
- ### ...e pública
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica dos datasets</strong></div>
<br>
::: {.incremental}
- ### ["Raw Data" Is an Oxymoron](https://direct.mit.edu/books/book/3992/Raw-Data-Is-an-Oxymoron)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica dos datasets</strong></div>
<br>
::: {.incremental}
- ### "Para trabalhar com dados, você precisa entender aquilo que os dados estão tentando representar. Uma das primeiras coisas que devemos fazer diante de uma base de dados, é compreender as condições através das quais essa base de dados chegou a existir. Há sempre uma história por trás dos dados. Há sempre uma narrativa."
<br>
[Smari McCarthy, making data speak](https://exposingtheinvisible.org/en/films/smari-mccarthy-making-data-speak/)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>DATASHEETS FOR DATASETS</strong></div>
<br>
::: {.incremental}
- ##### "Cada conjunto de dados deve ser acompanhado por uma ficha técnica que documente sua motivação, composição, processo de coleta, usos recomendados, etc. (...) Aumentar a transparência e a responsabilidade dentro da comunidade de aprendizado de máquina, mitigar preconceitos sociais indesejados em modelos de aprendizado de máquina, facilitar uma maior reprodutibilidade dos resultados de aprendizado de máquina e ajudar pesquisadores e profissionais a selecionar conjuntos de dados mais apropriados para suas tarefas escolhidas.""
<br>
- [Link para o artigo Datasheets for datasets](https://arxiv.org/abs/1803.09010)
<br>
- [Apresentação do LABHDUFBA sobre o artigo](https://docs.google.com/presentation/d/1qv1VveggDxKg8YxsGgGzu9n_BI99AVZFByY0LojAgSQ/edit?usp=sharing)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica dos datasets</strong></div>
<br>
::: {.incremental}
- ### O trabalho do <s>historiador</s> ciêntista social diante do arquivo digital, portanto, não é tão diferente do trabalho diante do arquivo físico, pois exige tanto rigor metodológico no tratamento da fonte quanto o tratamento de uma fonte não digital. [...]esse cuidado muitas vezes é escamoteado diante da profusão de fontes, a agilidade da busca, a velocidade do acesso e a facilidade do armazenamento.
<br>
- ### [Brasil & Nascimento, 2020](https://www.scielo.br/j/eh/a/XNJJWhFFzPKdkhF6cyj5BJv/)
<br>
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica dos datasets</strong></div>
<br>
::: {.incremental}
- ### Publicidade, acessibilidade e terceirização
<br>
- ### Evocação/"Ad hoc" versus coleta (*repurpose* - Salganik, 2020)
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica das ferramentas</strong></div>
<br>
::: {.incremental}
- ### Um "erro no código" passa a constituir um "erro metodológico"
<br>
{fig-align="center"}
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica das ferramentas</strong></div>
::: {.incremental}
- ### "nossos ajudantes digitais já estão cheios de teoria e julgamento" (Bernhard Rieder and Theo Röhle in: BERRY, 2012, p. 70)
{fig-align="center" width=35%}
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica das ferramentas</strong></div>
<br>
::: {.incremental}
- ### “Não existe neutralidade metodológica das técnicas”
(BOURDIEU; PASSERON; CHAMBOREDON, 2004, p. 55)
<br>
{fig-align="center" width=30%}
:::
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: crítica das ferramentas</strong></div>
<br>
::: {.incremental}
- ### Letramento digital
<br>
- ### Articulação analógico e digital
<br>
- ### Superação da suposta oposição Quali-quanti
<br>
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>CSC: articulação teoria e empiria</strong></div>
<br>
::: {.incremental}
- ### Estudantes de graduação e pós-graduação [deveriam ser] ensinados como construir uma teoria por conta própria, principalmente fazendo pequenos projetos empíricos que introduzem os alunos à abstração, abdução e indução. Ensinar teorização como uma habilidade prática em vez de teoria como história intelectual implica em desenvolver habilidades em design de pesquisa, resolução de problemas e pensamento abstrato, analógico e abdutivo.
<br>
- ### (Ignatow, 2020, p.96)
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>CSC crítica e pública</strong></div>
<br>
::: {.incremental}
- ### Importância da presença digital: visibilidade e engajamento
<br>
- ### Data power!
<br>
- ### Tentação ao profetismo e sedução pelas lógicas de metrificação
<br>
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>Como eu aprendo a fazer **Ciência Social Computacional**?</strong></div>
##
<div style="text-align: center; font-size: 55px;"><strong>Vamos aprender a andar de bicicleta?</strong></div>
<br>
::: {.incremental}
- ### Utilidade;
<br>
- ### Aprendizado;
<br>
- ### Aperfeiçoamento;
<br>
- ### Diversificação;
<br>
- ### "Artesanato digital"
<br>
:::
---
##
<div style="text-align: center; font-size: 55px;"><strong>À guisa de conclusão: "certo, mas onde eu começo"?</strong></div>
<br>
::: {.incremental}
- ### Investir no letramento digital!
<br>
- ### Praticar ciência aberta: dados abertos, códigos abertos, ferramentas abertas;
<br>
- ### Abandonar o fetichismos dos dados, dos métodos e dos resultados
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>AGRADECIMENTOS ESPECIAIS</strong></div>
<br>
::: {.incremental}
::: {.incremental}
- ### Aos colegas do LABHDUFRJ, em especial aos coordenadores Profs Bruno Durães e Joyce Louback e membros do lab.
<br>
- ### Ao Programa de Pós-Graduação em Sociologia e Antropologia (PPGSA) do IFCS/UFRJ;
<br>
:::
##
<div style="text-align: center; font-size: 55px;"><strong>Referências bilbiográficas</strong></div>
<br>
BOURDIEU, P.; PASSERON, J. C.; CHAMBOREDON, J. C. Ofício de Sociólogo: metodologia da pesquisa na sociologia. Petrópolis: Vozes, 2004.
Boyd, D., & Crawford, K. (2012). Critical questions for big data. Information, Communication & Society, 15(5), 662–679
[FEATHERSTONE, M. Ubiquitous Media: An Introduction. Theory, Culture & Society, v. 26, n. 2–3, p. 1–22, 1 mar. 2009.](https://journals.sagepub.com/doi/10.1177/0263276409103104)
[HOWISON, J.; WIGGINS, A.; CROWSTON, K. Validity Issues in the Use of Social Network Analysis with Digital Trace Data. Journal of the Association for Information Systems, v. 12, n. 12, 29 dez. 2011.](http://aisel.aisnet.org/jais/vol12/iss12/2)
RIEDER, B.; RÖHLE, T. Digital Methods. In: SCHÄFER, M. T.; VAN ES, K. (Ed.). The Datafied Society. Studying Culture through Data. [s.l.] Amsterdam University Press, 2017. p. 109–124.
[SOUTHERTON, C. Datafication. In: SCHINTLER, L. A.; MCNEELY, C. L. (Ed.). Encyclopedia of Big Data. Cham: Springer International Publishing, 2020. p. 1–4.](https://link.springer.com/referenceworkentry/10.1007%2F978-3-319-32001-4_332-1)