Game of Thrones - Analysis

Author

brandm01

Published

March 5, 2025

Abstract

In this paper, we do state of art analysis

1 Introduction

in got-1 we analyzed which are the 10 characters with the most screentime in Game of Thrones and plotted them in a scatterplot episodes vs screentime.

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

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

# Dataset loading
screentimes <- read_csv("GOT_screentimes_1.csv")

# Select the characters with the highest screentime
screentimes_high <- top_n(screentimes, 10, screentime)
ggplot(screentimes, aes(screentime, episodes)) +
  geom_point() +
  geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length = 0)
Figure 1: Screentime vs episodes

2 Quarto Advanced Exercise 1

Inserting one of the images

3 Quarto Advanced Exercise 2

Insert a cross-reference to an image

Figure 2: The coat of arms of House Baratheon from A Song of Ice and Fire

We can see the symbol of house Baratheon in Figure 2

4 Quarto Advanced Exercise 3

Insert a crossreference to a chapter

4.1 Subtitle 3

I have referenced Section 4.1

5 Quarto Advanced Exercise 4

Making subfigures

(a) House Baratheon
(b) House Baylish
(c) House Arryn
(d) House Bolton
Figure 3: A collection of different coats of arms from the book ‘A song of Ice and Fire’, created by dezzzart published on deviantart.com

6 Quarto Advanced Exercise 5

To see the screentime vs episodes amount of time for the different characters, see Figure 1

7 Quarto Advanced Exercise 6

Some characters have a lot of screentime, as seen in Table 1

screentimes_high[, c("name", "screentime")] |> 
  knitr::kable()
Table 1: These are the characters with the most amount of 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