Skip to content

Commit

Permalink
polars 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorhawell committed Jul 5, 2024
1 parent 065b1b5 commit f95d8af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
[submodule "polars"]
path = polars
url = https://github.com/pola-rs/r-polars
branch = v0.17.0
branch = v0.18.0
[submodule "secretbase"]
path = secretbase
url = https://github.com/shikokuchuo/secretbase
Expand Down
2 changes: 1 addition & 1 deletion polars
Submodule polars updated 98 files
+3 −3 DESCRIPTION
+57 −0 NEWS.md
+28 −25 R/dataframe__frame.R
+29 −59 R/expr__datetime.R
+155 −67 R/expr__expr.R
+12 −1 R/expr__list.R
+1 −1 R/expr__name.R
+13 −4 R/expr__string.R
+19 −17 R/extendr-wrappers.R
+4 −48 R/functions__eager.R
+2 −2 R/group_by_dynamic.R
+40 −26 R/lazyframe__lazy.R
+17 −11 R/series__series.R
+52 −0 R/utils.R
+3 −2 README.Rmd
+4 −2 README.md
+1 −1 man/DataFrame_join.Rd
+1 −1 man/DataFrame_n_chunks.Rd
+11 −11 man/DataFrame_pivot.Rd
+6 −3 man/DataFrame_sample.Rd
+12 −9 man/DataFrame_unpivot.Rd
+1 −1 man/DynamicGroupBy_class.Rd
+1 −1 man/DynamicGroupBy_ungroup.Rd
+1 −1 man/ExprDT_cast_time_unit.Rd
+2 −2 man/ExprDT_convert_time_zone.Rd
+1 −1 man/ExprDT_hour.Rd
+1 −1 man/ExprDT_minute.Rd
+1 −1 man/ExprDT_offset_by.Rd
+2 −2 man/ExprDT_replace_time_zone.Rd
+7 −15 man/ExprDT_round.Rd
+1 −1 man/ExprDT_time.Rd
+1 −1 man/ExprDT_timestamp.Rd
+2 −2 man/ExprDT_total_days.Rd
+1 −1 man/ExprDT_total_microseconds.Rd
+1 −1 man/ExprDT_total_milliseconds.Rd
+1 −1 man/ExprDT_total_nanoseconds.Rd
+1 −1 man/ExprDT_total_seconds.Rd
+5 −10 man/ExprDT_truncate.Rd
+1 −1 man/ExprDT_with_time_unit.Rd
+1 −1 man/ExprList_eval.Rd
+18 −0 man/ExprList_explode.Rd
+5 −5 man/ExprStr_join.Rd
+2 −17 man/Expr_bottom_k.Rd
+23 −0 man/Expr_has_nulls.Rd
+19 −1 man/Expr_over.Rd
+8 −17 man/Expr_replace.Rd
+66 −0 man/Expr_replace_strict.Rd
+1 −17 man/Expr_rolling_max.Rd
+1 −17 man/Expr_rolling_mean.Rd
+1 −17 man/Expr_rolling_median.Rd
+1 −17 man/Expr_rolling_min.Rd
+1 −17 man/Expr_rolling_quantile.Rd
+1 −17 man/Expr_rolling_skew.Rd
+1 −17 man/Expr_rolling_std.Rd
+1 −17 man/Expr_rolling_sum.Rd
+1 −17 man/Expr_rolling_var.Rd
+13 −10 man/Expr_sample.Rd
+0 −2 man/Expr_slice.Rd
+2 −17 man/Expr_top_k.Rd
+9 −7 man/Expr_value_counts.Rd
+11 −3 man/IO_sink_parquet.Rd
+11 −3 man/IO_write_parquet.Rd
+1 −1 man/LazyFrame_group_by_dynamic.Rd
+1 −1 man/LazyFrame_join.Rd
+12 −12 man/LazyFrame_unpivot.Rd
+1 −1 man/Series_class.Rd
+12 −3 man/Series_value_counts.Rd
+1 −17 man/pl_date_range.Rd
+1 −17 man/pl_date_ranges.Rd
+417 −107 src/rust/Cargo.lock
+9 −7 src/rust/Cargo.toml
+10 −15 src/rust/src/conversion_s_to_r.rs
+15 −13 src/rust/src/lazy/dataframe.rs
+63 −71 src/rust/src/lazy/dsl.rs
+12 −12 src/rust/src/rdataframe/mod.rs
+1 −1 src/rust/src/rdataframe/read_ndjson.rs
+4 −2 src/rust/src/rdataframe/read_parquet.rs
+17 −0 src/rust/src/rdatatype.rs
+2 −20 src/rust/src/rlib.rs
+25 −17 src/rust/src/series.rs
+4 −0 src/rust/src/utils/mod.rs
+286 −274 tests/testthat/_snaps/after-wrappers.md
+3 −3 tests/testthat/_snaps/lazy.md
+2 −2 tests/testthat/test-concat.R
+32 −27 tests/testthat/test-dataframe.R
+4 −27 tests/testthat/test-expr_datetime.R
+122 −37 tests/testthat/test-expr_expr.R
+12 −0 tests/testthat/test-expr_list.R
+12 −4 tests/testthat/test-expr_string.R
+6 −0 tests/testthat/test-extendr-meta.R
+16 −6 tests/testthat/test-joins.R
+6 −6 tests/testthat/test-melt.R
+26 −0 tests/testthat/test-parquet.R
+31 −0 tests/testthat/test-sink_stream.R
+5 −5 tools/lib-sums.tsv
+2 −2 vignettes/install.Rmd
+3 −3 vignettes/polars.Rmd
+11 −14 vignettes/userguide.Rmd

0 comments on commit f95d8af

Please sign in to comment.