#Make top 10 (regarding screentime) of the characters
<- top_n(screentimes, 10, screentime) screentimes_high
Game of Thrones
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:
#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)
Some characters have a lot of screentime, see Table 1.
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
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.