Skip to content

Report information of the package

Source code

Description

[Experimental] 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 : 1.0.1.9000
#> Rust Polars crate version: 0.49.1
#> 
#> Thread pool size: 4 
#> 
#> Features:            
#> nightly TRUE
polars_info()$versions
#> $r_package
#> [1] "1.0.1.9000"
#> 
#> $rust_crate
#> [1] "0.49.1"
polars_info()$features$nightly
#> [1] TRUE