Code
rf
Output
# A tibble: 5 x 1
# Rowwise: x
x
<int>
1 1
2 2
3 3
4 4
5 5
Code
(expect_error(validate_rowwise_df(df1)))
Output
<simpleError in validate_rowwise_df(df1): could not find function "validate_rowwise_df">
Code
(expect_error(validate_rowwise_df(df2)))
Output
<simpleError in validate_rowwise_df(df2): could not find function "validate_rowwise_df">
Code
(expect_error(validate_rowwise_df(df3)))
Output
<simpleError in validate_rowwise_df(df3): could not find function "validate_rowwise_df">
Code
(expect_error(validate_rowwise_df(df4)))
Output
<simpleError in validate_rowwise_df(df4): could not find function "validate_rowwise_df">
Code
(expect_error(validate_rowwise_df(df7)))
Output
<simpleError in validate_rowwise_df(df7): could not find function "validate_rowwise_df">
Code
(expect_error(attr(df8, "groups")$.rows <- 1:8))
Output
<error/tibble_error_assign_incompatible_size>
Error in `$<-`:
! Assigned data `1:8` must be compatible with existing data.
x Existing data has 10 rows.
x Assigned data has 8 rows.
i Only vectors of size 1 are recycled.
Caused by error in `vectbl_recycle_rhs_rows()`:
! Can't recycle input of size 8 to size 10.
Code
(expect_error(validate_rowwise_df(df10)))
Output
<simpleError in validate_rowwise_df(df10): could not find function "validate_rowwise_df">
Code
(expect_error(validate_rowwise_df(df11)))
Output
<simpleError in validate_rowwise_df(df11): could not find function "validate_rowwise_df">
Code
(expect_error(new_rowwise_df(tibble(x = 1:10), tibble(".rows" := list(1:5, -1L))))
)
Output
<error/rlang_error>
Error in `new_rowwise_df()`:
! `group_data` must be a tibble without a `.rows` column.
Code
(expect_error(new_rowwise_df(tibble(x = 1:10), 1:10)))
Output
<error/rlang_error>
Error in `new_rowwise_df()`:
! `group_data` must be a tibble without a `.rows` column.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.