Nothing
test_that("as.numeric treats values as doubles", {
skip_if_not_installed("dplyr")
skip_if_not_installed("dbplyr")
con <- local_con()
df <- data.frame(value = 1.23456789123)
duckdb_register(con, "df", df)
# NB: If this results in value AS NUMERIC, the result will be fixed to 3dp, i.e. 1.235
res <- dplyr::tbl(con, "df") |> dplyr::mutate(x = as.numeric(value)) |> dplyr::pull(x)
expect_equal(res, df[1, "value"])
})
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.