Skip to content

Commit e8b4571

Browse files
authored
Merge branch 'master' into constnessImprovements
2 parents 81898a1 + 0c29bcf commit e8b4571

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

man/mergelist.Rd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ l = list(
113113
lapply(l[-1L], `[`, j = if (.N>1L) .SD, by = "id1") ## duplicated rows
114114
try(mergelist(l, on="id1"))
115115

116+
\donttest{
116117
## 'star schema' and 'snowflake schema' examples (realistic data sizes)
117118

118119
### populate fact: US population by state and date
@@ -199,4 +200,5 @@ ans = mergelist(list(
199200
setmergelist(rev(geog), how="right")
200201
))
201202
}
203+
}
202204
\keyword{ data }

vignettes/datatable-programming.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ DT[, sqrt(Sepal.Length)]
225225
```
226226

227227
If function name to be substituted needs to be namespace-qualified then namespace and function name can be substituted as any other symbol in the expression:
228-
```{r substitute_fun3, result='hide'}
228+
```{r substitute_fun3, result='hide', eval=FALSE}
229229
DT[, ns::fun(Sepal.Length), env = list(ns="base", fun="sqrt"), verbose=TRUE]
230230
#Argument 'j' after substitute: base::sqrt(Sepal.Length)
231231
## DT[, base::sqrt(Sepal.Length)]

0 commit comments

Comments
 (0)