File: knitr.Rmd

package info (click to toggle)
r-cran-data.table 1.10.0-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 12,816 kB
  • sloc: ansic: 9,751; sh: 10; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
```{r test_id, message=FALSE, results="show", echo=TRUE, warning=FALSE}
require(data.table)              # print?
DT = data.table(x=1:3, y=4:6)    # no
DT                               # yes
DT[, z := 7:9]                   # no
print(DT[, z := 10:12])          # yes
if (1 < 2) DT[, a := 1L]         # no
DT                               # yes
```
Some text.