Code
between("1", 2, 3)
Condition
Error in `between()`:
! Can't combine `x` <character> and `left` <double>.
Code
between(1, "2", 3)
Condition
Error in `between()`:
! Can't combine `x` <double> and `left` <character>.
Code
between(1, 2, "3")
Condition
Error in `between()`:
! Can't combine `x` <double> and `right` <character>.
left
and right
to the size of x
Code
between(1:3, 1:2, 1L)
Condition
Error in `between()`:
! Can't recycle `left` (size 2) to size 3.
Code
between(1:3, 1L, 1:2)
Condition
Error in `between()`:
! Can't recycle `right` (size 2) to size 3.
Code
between(x, 1.5, 3.5, ptype = integer())
Condition
Error in `between()`:
! unused argument (ptype = integer())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.