library("readr")
library("ggplot2")
library("dplyr")
library("ggrepel")
# Dataset loading
<- read_csv("GOT_screentimes_1.csv")
screentimes
# Select the characters with the highest screentime
<- top_n(screentimes, 10, screentime) screentimes_high
Game of Thrones - Analysis
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?
ggplot(screentimes, aes(screentime, episodes)) +
geom_point() +
geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length = 0)
2 Quarto Advanced Exercise 1
Inserting one of the images
3 Quarto Advanced Exercise 2
Insert a cross-reference to an image
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
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
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 |