Create a arrow Table from a Polars object
Description
Create a arrow Table from a Polars object
Usage
## S3 method for class 'RPolarsDataFrame'
as_arrow_table(x, ..., compat_level = FALSE)
Arguments
x
|
A Polars DataFrame |
…
|
Ignored |
compat_level
|
Use a specific compatibility level when exporting Polars’ internal data
structures. This can be:
|
Examples
#> Table
#> 32 rows x 11 columns
#> $mpg <double>
#> $cyl <double>
#> $disp <double>
#> $hp <double>
#> $drat <double>
#> $wt <double>
#> $qsec <double>
#> $vs <double>
#> $am <double>
#> $gear <double>
#> $carb <double>