It seems that knitr doesn\'t understand that DT[, a:=1] should not result in an output of DT to the document. Is there a way to stop
knitr
DT[, a:=1]
DT
Why not just use:
```{r, results='hide'} DT[, c:=5] ```