forked from MarcellGranat/COVID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
46 lines (37 loc) · 1.18 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
title: "A COVID járvány elemzése többáltozós statisztikai eszközkkel"
author: "Granát Marcell & Mazzag Bálint"
output: bookdown::gitbook
site: bookdown::bookdown_site
favicon: "logo.ico"
---
# Mi ez a projekt? {#index}
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = T, comment = "", warning = F, message = F, cache = T, error = T)
library(tidyverse)
library(gt)
library(ggwordcloud)
theme_set(theme_grey() +
theme(legend.position = "bottom",
text = element_text(size = 12),
legend.box = "vertical",
legend.key = element_blank()))
```
```{r echo = F}
knitr::include_graphics('logo.png')
```
A tanulmány a Budapesti Corvinus Egyetem Többváltozós adatelemzés tárgy keretében készült.\
Kézirat lezárásának dátuma: 2021. január 3.\
A kézirat tartalmához fűzödő tudományos diszkusszió támogatása érdekében egy párbeszéd ablak került megnyitásra az anyagokat tartalmazó GitHub repository oldalán: https://github.com/MarcellGranat/COVID/discussions
```{css, echo=FALSE}
p {
text-align: justify;
}
.author {
font-size: 20px;
text-align: center;
}
.title {
text-align: center;
}
```