| aaa4_tinycodet_dry | R Documentation |
"Don't Repeat Yourself", sometimes abbreviated as "DRY", is the coding principle not to write unnecessarily repetitive code. To help in that effort, the 'tinycodet' R-package introduces a few features:
The transform_if function.
Operators for short-hand re-ordering matrices Row- or Column-wise.
tinycodet_help
object <- matrix(c(-9:8, NA, NA) , ncol=2)
# in base R:
ifelse( # repetitive, and gives unnecessary warning
is.na(object > 0), -Inf,
ifelse(
object > 0, log(object), object^2
)
)
# with tinycodet:
object |> transform_if(\(x) x > 0, log, \(x) x^2, \(x) -Inf) # compact & no warning
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.