Skip to content

Commit

Permalink
adding join vignette to website (#6562)
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFelizR authored Nov 8, 2024
1 parent bc94690 commit 319a53c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 13 deletions.
2 changes: 2 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ navbar:
href: articles/datatable-sd-usage.html
- text: "Keys and fast binary search based subset"
href: articles/datatable-keys-fast-subset.html
- text: "Joins in data.table"
href: articles/datatable-joins.html
- text: "Secondary indices and auto indexing"
href: articles/datatable-secondary-indices-and-auto-indexing.html
- text: "Efficient reshaping using data.table"
Expand Down
6 changes: 0 additions & 6 deletions vignettes/css/toc.css

This file was deleted.

9 changes: 7 additions & 2 deletions vignettes/datatable-benchmarking.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ output:
options:
toc: true
number_sections: true
meta:
css: [default, css/toc.css]
vignette: >
%\VignetteIndexEntry{Benchmarking data.table}
%\VignetteEngine{knitr::knitr}
Expand All @@ -18,6 +16,13 @@ vignette: >
h2 {
font-size: 20px;
}

#TOC {
border: 1px solid #ccc;
border-radius: 5px;
padding-left: 1em;
background: #f6f6f6;
}
</style>

This document is meant to guide on measuring performance of `data.table`. Single place to document best practices and traps to avoid.
Expand Down
11 changes: 8 additions & 3 deletions vignettes/datatable-faq.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ output:
options:
toc: true
number_sections: true
meta:
css: [default, css/toc.css]
vignette: >
%\VignetteIndexEntry{Frequently Asked Questions about data.table}
%\VignetteEngine{knitr::knitr}
Expand All @@ -18,7 +16,14 @@ vignette: >
h2 {
font-size: 20px;
}
#TOC { width: 100%; }

#TOC {
border: 1px solid #ccc;
border-radius: 5px;
padding-left: 1em;
background: #f6f6f6;
width: 100%;
}
</style>

```{r, echo = FALSE, message = FALSE}
Expand Down
11 changes: 9 additions & 2 deletions vignettes/datatable-sd-usage.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,21 @@ output:
options:
toc: true
number_sections: true
meta:
css: [default, css/toc.css]
vignette: >
%\VignetteIndexEntry{Using .SD for Data Analysis}
%\VignetteEngine{knitr::knitr}
\usepackage[utf8]{inputenc}
---

<style>
#TOC {
border: 1px solid #ccc;
border-radius: 5px;
padding-left: 1em;
background: #f6f6f6;
}
</style>

```{r, echo = FALSE, message = FALSE}
require(data.table)
knitr::opts_chunk$set(
Expand Down

0 comments on commit 319a53c

Please sign in to comment.