Skip to content

Report information of the package

Description

This function reports the following information:

  • Package versions (the Polars R package version and the dependent Rust Polars crate version)
  • Number of threads used by Polars
  • Rust feature flags (See vignette(“install”, “polars”) for details)

Usage

polars_info()

Value

A list with information of the package

Examples

library("polars")

polars_info()
#> Polars R package version : 0.0.9000.9000
#> Rust Polars crate version: 0.46.0
#> 
#> Thread pool size: 4 
#> 
#> Features:            
#> nightly TRUE
polars_info()$versions
#> $r_package
#> [1] "0.0.9000.9000"
#> 
#> $rust_crate
#> [1] "0.46.0"
polars_info()$features$nightly
#> [1] TRUE