-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
103 lines (82 loc) · 1.55 KB
/
index.qmd
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
pagetitle: "DataViz Gallery"
lightbox: true
format:
html:
toc: true
image: img/share/banner.png
search: false
execute:
echo: false
listing:
- id: gallery
template: gallery.ejs
contents: gallery.yml
description: |
A gallery of compelling data visualizations using Python and R.
---
::: {#hero-banner .column-screen}
::: {.grid .column-page}
::: {.headline .g-col-lg-6 .g-col-12 .g-col-md-12}
::: h1
DataViz Gallery
:::
Welcome to **DataViz Gallery**—a curated collection of compelling data visualizations using Python and R.
> "A picture is worth a thousand words."
> — Frederick R. Barnard
:::
```{r}
#| classes: '.g-col-lg-6 .g-col-12 .g-col-md-12'
#| warning: false
source("carousel.R")
carousel("gallery-carousel", 5000,
yaml.load_file("carousel.yml"))
```
:::
:::
::: {#gallery .column-page}
:::
```{=html}
<style>
#hero-banner {
padding-top: 35px;
}
#quarto-content main {
margin-top: 0;
padding-top: 0;
}
html {
scroll-behavior: smooth;
}
.headline {
font-size: 1.25em;
font-weight: 300;
padding-bottom: 1em;
}
.headline p {
margin: 0;
padding-bottom: 0.2rem;
}
.headline a {
text-decoration: none;
}
.headline ul li {
margin-bottom: 0.3em;
}
.carousel.card {
padding-top: 2em;
}
.carousel img {
width: 70%;
margin-bottom: 110px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
margin-bottom: 110px;
}
.carousel-caption {
padding-top: 1em;
}
.touch {
}
</style>
```