-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
60 lines (48 loc) · 1.22 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: "ESIF data pipeline"
lang: cs
---
```{r setup, include=F}
knitr::opts_chunk$set(echo = F, eval = T, warning = F, out.width = "90%", message = F)
knitr::opts_knit$set()
library(stringr)
library(dplyr)
library(ggplot2)
# library(CzechData)
library(lubridate)
library(ragg)
library(ptrr)
library(scales)
library(fontawesome)
library(tidyverse)
library(targets)
library(arrow)
Sys.setlocale("LC_TIME", "cs_CZ.UTF-8")
ptrr::set_geom_defaults()
```
```{r fonts}
sysfonts::font_add_google("IBM Plex Sans", "IBM Plex Sans")
sysfonts::font_add_google("IBM Plex Sans Condensed", "IBM Plex Sans Condensed")
```
```{r metathis}
library(metathis)
meta() %>%
meta_description(
"Description"
) %>%
meta_name("github-repo" = "petrbouchal/esifunguji") %>%
meta_viewport() %>%
meta_social(
title = "Social title",
url = "https://petrbouchal.xyz/esifunguji/",
image = "https://petrbouchal.xyz/esifunguji/twitter_card_large.png",
image_alt = "Image alt",
og_type = "website",
og_author = c("Petr Bouchal"),
twitter_card_type = "summary_large_image",
twitter_creator = "@petrbouchal"
)
```
```{r x, child='README.Rmd'}
```
Last built on `r format(lubridate::now("CET"), "%Y-%m-%d %H:%M %Z")`