Skip to content

Report information of the package

Source code

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)
  • Code completion mode: either “deactivated”, “rstudio”, or “native”. See polars_code_completion_activate().

Usage

polars_info()

Value

A list with information of the package

Examples

library(polars)

polars_info()
#> Polars R package version : 0.16.2.9000
#> Rust Polars crate version: 0.39.2
#> 
#> Thread pool size: 4 
#> 
#> Features:                               
#> default                    TRUE
#> full_features              TRUE
#> disable_limit_max_threads  TRUE
#> nightly                    TRUE
#> sql                        TRUE
#> rpolars_debug_print       FALSE
#> 
#> Code completion: deactivated
polars_info()$versions
#> $r_package
#> [1] "0.16.2.9000"
#> 
#> $rust_crate
#> [1] "0.39.2"
polars_info()$features$nightly
#> [1] TRUE