Nothing
testthat::test_that("unrowwise() works", {
expect_equal(
titanic,
titanic |> dplyr::rowwise() |> unrowwise()
)
expect_equal(
titanic |> dplyr::group_by(Sex, Class),
titanic |> dplyr::group_by(Sex, Class) |> dplyr::rowwise() |> unrowwise()
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.