File tree Expand file tree Collapse file tree 5 files changed +26
-13
lines changed Expand file tree Collapse file tree 5 files changed +26
-13
lines changed Original file line number Diff line number Diff 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"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66 options :
77 toc : true
88 number_sections : true
9- meta :
10- css : [default, css/toc.css]
119vignette : >
1210 %\VignetteIndexEntry{Benchmarking data.table}
1311 %\VignetteEngine{knitr::knitr}
@@ -18,6 +16,13 @@ vignette: >
1816h2 {
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
2328This document is meant to guide on measuring performance of ` data.table ` . Single place to document best practices and traps to avoid.
Original file line number Diff line number Diff line change 66 options :
77 toc : true
88 number_sections : true
9- meta :
10- css : [default, css/toc.css]
119vignette : >
1210 %\VignetteIndexEntry{Frequently Asked Questions about data.table}
1311 %\VignetteEngine{knitr::knitr}
@@ -18,7 +16,14 @@ vignette: >
1816h2 {
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}
Original file line number Diff line number Diff line change @@ -6,14 +6,21 @@ output:
66 options :
77 toc : true
88 number_sections : true
9- meta :
10- css : [default, css/toc.css]
119vignette : >
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}
1825require(data.table)
1926knitr::opts_chunk$set(
You can’t perform that action at this time.
0 commit comments