From 3ca1d24905248484eadb3ebb77524f86f8393f03 Mon Sep 17 00:00:00 2001 From: rikivillalba <32423469+rikivillalba@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:20:58 -0300 Subject: [PATCH] column *indices* should be *positions* Here column *indices* might be *positions* since *indices* better refers to `indices()`. Can be also *numbers* though (while re-reading for translations...;) --- vignettes/datatable-reshape.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/datatable-reshape.Rmd b/vignettes/datatable-reshape.Rmd index c84c1558d..e5efb660f 100644 --- a/vignettes/datatable-reshape.Rmd +++ b/vignettes/datatable-reshape.Rmd @@ -80,7 +80,7 @@ str(DT.m1) * `measure.vars` specify the set of columns we would like to collapse (or combine) together. -* We can also specify column *indices* instead of *names*. +* We can also specify column *positions* instead of *names*. * By default, `variable` column is of type `factor`. Set `variable.factor` argument to `FALSE` if you'd like to return a *`character`* vector instead.