diff --git a/DESCRIPTION b/DESCRIPTION index be3047f21..ce9f0b281 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,20 +1,22 @@ Package: polars -Title: Polars ported to R +Title: 'Polars' Ported to R Version: 0.6.1.9000 Depends: R (>= 4.1.0) Imports: utils, codetools Authors@R: c(person("Ritchie", "Vink", , "ritchie46@gmail.com", role = c("aut")), person("Soren", "Welling", , "sorhawell@gmail.com", role = c("aut","cre"))) -Description: This package ports the polars data query library to R. +Description: 'Polars' is a lightning fast Data Frame library written in Rust. + This package allows converting R data to 'Polars' data and vice versa, + and enabling fast data processing with 'Polars'. License: MIT + file LICENSE Encoding: UTF-8 Roxygen: list(markdown = TRUE) RoxygenNote: 7.2.3 URL: https://github.com/pola-rs/r-polars https://rpolars.r-universe.dev/polars -Suggests: - arrow, +Suggests: + arrow, bench, bit64, data.table, @@ -40,7 +42,7 @@ Config/Needs/dev: robinlovelace/styler.equals, rextendr Config/testthat/edition: 3 -Collate: +Collate: 'utils.R' 'extendr-wrappers.R' 'after-wrappers.R' diff --git a/R/expr__expr.R b/R/expr__expr.R index ba2994935..88a67f0e2 100644 --- a/R/expr__expr.R +++ b/R/expr__expr.R @@ -3,7 +3,7 @@ #' @name Expr_class #' @description `Expr`essions are all the functions and methods that are applicable #' to a Polars DataFrame. They can be split into the following categories (following -#' the [Py-Polars classification](https://pola-rs.github.io/polars/py-polars/html/reference/expressions)): +#' the [Py-Polars classification](https://pola-rs.github.io/polars/py-polars/html/reference/expressions/)): #' * Aggregate #' * Binary #' * Categorical diff --git a/man/Expr_class.Rd b/man/Expr_class.Rd index ece5a53a3..64dbc8c99 100644 --- a/man/Expr_class.Rd +++ b/man/Expr_class.Rd @@ -6,7 +6,7 @@ \description{ \code{Expr}essions are all the functions and methods that are applicable to a Polars DataFrame. They can be split into the following categories (following -the \href{https://pola-rs.github.io/polars/py-polars/html/reference/expressions}{Py-Polars classification}): +the \href{https://pola-rs.github.io/polars/py-polars/html/reference/expressions/}{Py-Polars classification}): \itemize{ \item Aggregate \item Binary