as.data.frame.unitted_tbl_df: Override the default S3 for as.data.frame.tbl_df

Description Usage Arguments Examples

Description

Exporting this function seems to make it available for dispatch but still hidden. From here we could route back to the S4 dispatch system with ".unitted_as.data.frame(object=x, ...)", but that seems like a waste of processing time since we come here first.

Usage

1
2
## S3 method for class 'unitted_tbl_df'
as.data.frame(x, ...)

Arguments

x

The unitted_tbl_df to convert to a data.frame

...

Additional arguments passed to as.data.frame

Examples

1
2
x <- tibble::as_tibble(u(data.frame(x=u(1:3,"k"), y=u(3:5, "g"))))
as.data.frame(x)

appling/unitted documentation built on May 10, 2019, 12:44 p.m.