|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+# Gender Share in Casting Actors (DataLiteracy-WS2122)
|
|
|
2
|
+Team project "Analyzing Gender Share in Casting Actors" as part of the lecture "Data Literacy", Uni-Tübingen.
|
|
|
3
|
+
|
|
|
4
|
+---
|
|
|
5
|
+In the context of gender equality, and inspired by the Bechdel test and a possible impact of the test,
|
|
|
6
|
+we aim to examine the gender balance in principal roles in movies by using IMDb data [[1](https://www.imdb.com/interfaces/), [2](https://datasets.imdbws.com/)] on
|
|
|
7
|
+movie casting.
|
|
|
8
|
+
|
|
|
9
|
+## README
|
|
|
10
|
+
|
|
|
11
|
+### Repository Cloning - (Do not download archive-balls!)
|
|
|
12
|
+
|
|
|
13
|
+The dataset is provided as large archives (`dat/*.tsv.gz`) that are tracket with *git lfs (large file storage)*. A download of this repository via a tar-ball or zip-ball won't include this archive data.
|
|
|
14
|
+
|
|
|
15
|
+To download the repository, use either HTTPS or SSH:
|
|
|
16
|
+```bash
|
|
|
17
|
+git clone https://coreco.samstagskind.de/tobi/Gender-Share-in-Casting-Actors_DL-WS2122_public.git
|
|
|
18
|
+```
|
|
|
19
|
+```bash
|
|
|
20
|
+git clone git@coreco.samstagskind.de:tobi/Gender-Share-in-Casting-Actors_DL-WS2122_public.git
|
|
|
21
|
+```
|
|
|
22
|
+
|
|
|
23
|
+### Preprocessing - (Before Executing the Experiments)
|
|
|
24
|
+
|
|
|
25
|
+Executing the experiments (`exp/*.ipynb`) requires an extraction and preprocessing of the datasets large archives (`dat/*.tsv.gz`).
|
|
|
26
|
+
|
|
|
27
|
+To extract and preprocess these files, please open the [Jupyter-Notebook `exp/exp-001_Data-Preprocessing-and-Provisioning.ipynb`](https://coreco.samstagskind.de/tobi/Gender-Share-in-Casting-Actors_DL-WS2122_public/src/branch/master/exp/exp-001_Data-Preprocessing-and-Provisioning.ipynb) and execute all cells of this Data-Preprocessing-and-Provisioning ipython document once. You may use the button that's revealed by executing this documents first code cell.
|
|
|
28
|
+
|
|
|
29
|
+## PROJECT REPORT in pdf format
|
|
|
30
|
+[`doc/projectsubmission2022/projectsubmission.pdf`](https://coreco.samstagskind.de/tobi/Gender-Share-in-Casting-Actors_DL-WS2122_public/src/branch/master/doc/projectsubmission2022/projectsubmission.pdf)
|
|
|
31
|
+
|
|
|
32
|
+## REPOSITORY STRUCTURE
|
|
|
33
|
+
|
|
|
34
|
+```
|
|
|
35
|
+├── dat // (data-set)
|
|
|
36
|
+│ ├── title.basics.tsv.gz
|
|
|
37
|
+│ ├── title.principals.tsv.gz
|
|
|
38
|
+│ └── title.ratings.tsv.gz
|
|
|
39
|
+├── doc // (reports)
|
|
|
40
|
+│ ├── projectregistration2022
|
|
|
41
|
+│ │ ├── neurips_2021.sty
|
|
|
42
|
+│ │ ├── neurips_2021.tex
|
|
|
43
|
+│ │ └── projectregistration.tex
|
|
|
44
|
+│ └── projectsubmission2022
|
|
|
45
|
+│ ├── bibliography.bib
|
|
|
46
|
+│ ├── fig-001_Share-in-principal-cast-of-actresses-in-all-movies-1980-2020.png
|
|
|
47
|
+│ ├── neurips_2021.sty
|
|
|
48
|
+│ ├── neurips_2021.tex
|
|
|
49
|
+│ ├── projectsubmission.pdf
|
|
|
50
|
+│ └── projectsubmission.tex
|
|
|
51
|
+└── exp // (experiments)
|
|
|
52
|
+ ├── exp-001_Data-Preprocessing-and-Provisioning.ipynb
|
|
|
53
|
+ ├── exp-002_Share-in-principal-cast-of-actresses-in-all-movies-1980-2020.ipynb
|
|
|
54
|
+ ├── exp-003_T-Test-Hypothesis-Testing.ipynb
|
|
|
55
|
+ ├── exp-004_Beta-Binomial-Hypothesis-Testing.ipynb
|
|
|
56
|
+ └── exp-005_Relationship-Rating-and-Share-Actresses-on-principal-cast.ipynb
|
|
|
57
|
+
|
|
|
58
|
+```
|
|
|
59
|
+
|
|
|
60
|
+
|
|
|
61
|
+
|