Instead of
options(device = tgp)
would it make sense to suggest:
options(device = terminalgraphics::tgp)
? After this basic things like plot(1:3, col = 2:4, cex = 4, pch = 19) works. Lots of plots can be done without having to attach the package.
Instead of
```r
options(device = tgp)
```
would it make sense to suggest:
```r
options(device = terminalgraphics::tgp)
```
? After this basic things like `plot(1:3, col = 2:4, cex = 4, pch = 19)` works. Lots of plots can be done without having to attach the package.