Converts a normal tibble/data.frame to a facile_frame

as_facile_frame(
  x,
  datastore = fds(x),
  classes = NULL,
  ...,
  .valid_sample_check = TRUE
)

Arguments

x

a sample-like descriptor

datastore

the FacileDataStore tied to x

classes

more classes to append to the outgoing object. The "facile_frame" class entry is always the last one of the bunch.

...

dots

.valid_sample_check

If TRUE (default), will check if x is a valid subset of the FacileDataStore .fds. Internal functions may set this to TRUE to avoid the check to (1) save time; and (2) save infinite recursion in the call to assert_sample_subset.