Game of Thrones

Author

Gabriel Sciascia

Published

March 6, 2025

Abstract

This document contains information etc. from Game of Thrones (GOT, Lyu et al. (2018)).

1 Information

Games of Thrones was partly filmed in the beuatiful city of Dubrovnik (Croatia). Look at Figure 2 to see emblems from the series, Figure 2 (a) and Figure 2 (c) both include a bird. See Section 3 to view the references.

Following code and graph (Figure 1) displays the analysis of screentime and appeared episodes of characters:

#Make top 10 (regarding screentime) of the characters 
screentimes_high <- top_n(screentimes, 10, screentime)
#Plot with all characters as dots and top 10 with names
ggplot(screentimes, aes(screentime, episodes)) +
  geom_point() +
  geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length = 0)
Figure 1: Screentime and appeared episodes of characters

Some characters have a lot of screentime, see Table 1.

Table 1: These are the most goated characters of GOT
name screentime episodes
Tyrion Lannister 293.30 54
Jon Snow 268.15 49
Daenerys Targaryen 221.30 49
Cersei Lannister 201.45 52
Sansa Stark 199.30 47
Arya Stark 189.15 47
Jaime Lannister 162.30 43
Theon Greyjoy 123.30 39
Samwell Tarly 121.45 37
Jorah Mormont 117.30 42

2 Pics

(a) Arryn
(b) Baratheon
(c) Baylish
(d) Bolton
Figure 2: Emblems from game of thrones

3 References

Lyu, Zhe, Nana Shao, Taiwo Akinyemi, and William B. Whitman. 2018. “Methanogenesis.” Current Biology: CB 28 (13): R727–32. https://doi.org/10.1016/j.cub.2018.05.021.