tests/testthat/_snaps/dm_deconstruct.md

snapshot test

Code
  dm <- dm_nycflights13()
  dm_deconstruct(dm)
Message
  airlines <- pull_tbl(dm, "airlines", keyed = TRUE)
  airports <- pull_tbl(dm, "airports", keyed = TRUE)
  flights <- pull_tbl(dm, "flights", keyed = TRUE)
  planes <- pull_tbl(dm, "planes", keyed = TRUE)
  weather <- pull_tbl(dm, "weather", keyed = TRUE)

non-syntactic names

Code
  dm <- dm(`if` = tibble(a = 1), `a b` = tibble(b = 1))
  dm_deconstruct(dm)
Message
  `if` <- pull_tbl(dm, "if", keyed = TRUE)
  `a b` <- pull_tbl(dm, "a b", keyed = TRUE)


Try the dm package in your browser

Any scripts or data that you put into this service are public.

dm documentation built on Nov. 2, 2023, 6:07 p.m.