Skip to content

Commit 319a53c

Browse files
authored
adding join vignette to website (#6562)
1 parent bc94690 commit 319a53c

File tree

5 files changed

+26
-13
lines changed

5 files changed

+26
-13
lines changed

_pkgdown.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ navbar:
3737
href: articles/datatable-sd-usage.html
3838
- text: "Keys and fast binary search based subset"
3939
href: articles/datatable-keys-fast-subset.html
40+
- text: "Joins in data.table"
41+
href: articles/datatable-joins.html
4042
- text: "Secondary indices and auto indexing"
4143
href: articles/datatable-secondary-indices-and-auto-indexing.html
4244
- text: "Efficient reshaping using data.table"

vignettes/css/toc.css

Lines changed: 0 additions & 6 deletions
This file was deleted.

vignettes/datatable-benchmarking.Rmd

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ output:
66
options:
77
toc: true
88
number_sections: true
9-
meta:
10-
css: [default, css/toc.css]
119
vignette: >
1210
%\VignetteIndexEntry{Benchmarking data.table}
1311
%\VignetteEngine{knitr::knitr}
@@ -18,6 +16,13 @@ vignette: >
1816
h2 {
1917
font-size: 20px;
2018
}
19+
20+
#TOC {
21+
border: 1px solid #ccc;
22+
border-radius: 5px;
23+
padding-left: 1em;
24+
background: #f6f6f6;
25+
}
2126
</style>
2227

2328
This document is meant to guide on measuring performance of `data.table`. Single place to document best practices and traps to avoid.

vignettes/datatable-faq.Rmd

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ output:
66
options:
77
toc: true
88
number_sections: true
9-
meta:
10-
css: [default, css/toc.css]
119
vignette: >
1210
%\VignetteIndexEntry{Frequently Asked Questions about data.table}
1311
%\VignetteEngine{knitr::knitr}
@@ -18,7 +16,14 @@ vignette: >
1816
h2 {
1917
font-size: 20px;
2018
}
21-
#TOC { width: 100%; }
19+
20+
#TOC {
21+
border: 1px solid #ccc;
22+
border-radius: 5px;
23+
padding-left: 1em;
24+
background: #f6f6f6;
25+
width: 100%;
26+
}
2227
</style>
2328

2429
```{r, echo = FALSE, message = FALSE}

vignettes/datatable-sd-usage.Rmd

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@ output:
66
options:
77
toc: true
88
number_sections: true
9-
meta:
10-
css: [default, css/toc.css]
119
vignette: >
1210
%\VignetteIndexEntry{Using .SD for Data Analysis}
1311
%\VignetteEngine{knitr::knitr}
1412
\usepackage[utf8]{inputenc}
1513
---
1614

15+
<style>
16+
#TOC {
17+
border: 1px solid #ccc;
18+
border-radius: 5px;
19+
padding-left: 1em;
20+
background: #f6f6f6;
21+
}
22+
</style>
23+
1724
```{r, echo = FALSE, message = FALSE}
1825
require(data.table)
1926
knitr::opts_chunk$set(

0 commit comments

Comments
 (0)