GOT-2

Author

Robin Merz

Abstract

In this paper, we do state of the art analysis… (unnumberd (no number), unlisted (not listed in table of contents))

Introduction

In our first analysis, we try to find out, which characters have the most screentime in the GOT-Series. Additionally, one could ask which characters are in the most episodes, with the least screentime or which characters have the most screentime whith the least amount of episodes.

Who starred in a lot of episodes with little screentime, and vice versa

Analysis

#GOT-1: Code

library("readr")
library("ggplot2")
library("dplyr")
library("ggrepel")

screentimes <- read_csv("GOT_screentimes_1.csv") #import Data

screentimes_high <- top_n(screentimes, 10, screentime) #select character with highest screentime

ggplot(screentimes, aes(screentime, episodes)) + #make scatterplot
  geom_point() +
  geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length = 0)

Figure 1: House Arryn
(a) House Bolton
(b) House Arryn
(c) House Baratheon
(d) House Baylish
Figure 2: Houses

see Figure 1 for further information

see Figure 2 for all sigils, especially Figure 2 (a)

screentimes_high[,c("name", "screentime")] |> 
  knitr::kable()
Table 1: These are the characters with the most screentime
name screentime
Tyrion Lannister 293.30
Jon Snow 268.15
Daenerys Targaryen 221.30
Cersei Lannister 201.45
Sansa Stark 199.30
Arya Stark 189.15
Jaime Lannister 162.30
Theon Greyjoy 123.30
Samwell Tarly 121.45
Jorah Mormont 117.30

see Table 1 for further information about the screentimes of the characters

as postulated by Knuth (1984)

Literature is awesome (Knuth 1984)

To get an overview, what we are trying to do, see Section 2

References

Knuth, Donald Ervin. 1984. “Literate Programming.” The Computer Journal 27 (2): 97–111.