#GOT-1: Code
library("readr")
library("ggplot2")
library("dplyr")
library("ggrepel")
<- read_csv("GOT_screentimes_1.csv") #import Data
screentimes
<- top_n(screentimes, 10, screentime) #select character with highest screentime
screentimes_high
ggplot(screentimes, aes(screentime, episodes)) + #make scatterplot
geom_point() +
geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length = 0)
GOT-2
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
see Figure 1 for further information
see Figure 2 for all sigils, especially Figure 2 (a)
c("name", "screentime")] |>
screentimes_high[,::kable() knitr
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