View source: R/check-functions.R
check_equal_length | R Documentation |
Check that x
and y
have the same length.
check_equal_length(x, y, nm_x, nm_y)
x , y |
Arguments to compare |
nm_x , nm_y |
Names to use in error message |
'TRUE', invisibly.
x <- 1:3
y <- 3:1
check_equal_length(x = x,
y = y,
nm_x = "x",
nm_y = "y")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.