Skip to content

Releases: markfairbanks/tidypolars

v0.2.7

19 Nov 17:08
b0b5674
Compare
Choose a tag to compare

New Tibble methods

  • .to_dict()

v0.2.6

18 Nov 19:20
Compare
Choose a tag to compare

New functions

  • count()
  • floor()
  • length()
  • quantile()
  • sqrt()

Functionality improvements

  • .bind_rows(): Auto-aligns columns by name

v0.2.5

16 Nov 07:50
4296933
Compare
Choose a tag to compare
Merge pull request #142 from markfairbanks/fix-html-printing

Fix html printing

v0.2.4

16 Nov 04:04
Compare
Choose a tag to compare

New functions

  • paste()
  • paste0()

Improved functionality

  • .relocate(): tidyselect helpers work

v0.2.1

08 Nov 23:25
8cbaf18
Compare
Choose a tag to compare

New Tibble methods

  • .replace_null()
  • .set_names()

New functions

  • replace_null()

v0.2.0

05 Nov 18:58
Compare
Choose a tag to compare

v0.2.0 (2021/11/05)

New Functions

  • as_float()
  • as_integer()
  • as_string()
  • between()
  • cast()
  • desc()
  • is_finite()
  • is_in()
  • is_infinite()
  • is_not()
  • is_not_in()
  • is_not_null()
  • is_null()
  • round()
  • lubridate
    • as_date()
    • as_datetime()
    • dt_round()
    • hour()
    • mday()
    • minute()
    • month()
    • quarter()
    • second()
    • wday()
    • week()
    • yday()
    • year()
  • stringr
    • str_detect()
    • str_extract()
    • str_length()
    • str_remove_all()
    • str_remove()
    • str_replace_all()
    • str_replace()
    • str_sub()
    • str_to_lower()
    • str_to_upper()
    • str_trim()

Improved functionality

  • .drop(): tidyselect helpers work

v0.1.7

20 Oct 23:56
Compare
Choose a tag to compare
  • New Tibble methods

    • .count()
    • .drop_null()
    • .inner_join()/.left_join()/.outer_join()
    • .write_csv()
    • .write_parquet()
  • New functions

    • tp.abs()
    • tp.case_when()
    • tp.first()
    • tp.if_else()
    • tp.lag()
    • tp.last()
    • tp.lead()
    • tp.max()
    • tp.mean()
    • tp.median()
    • tp.min()
    • tp.n_distinct()
    • tp.sd()
    • tp.sum()
    • tp.read_csv()
    • tp.read_parquet()
    • tidyselect
      • tp.contains()
      • tp.ends_with()
      • tp.everything()
      • tp.starts_with()
  • Improved functionality

    • .bind_cols()/.bind_rows(): Can append multiple data frames in one call

v0.1.6

15 Oct 18:04
Compare
Choose a tag to compare
  • Improved functionality

    • .rename(): Can now use both a dplyr-like and pandas-like interface
  • New attributes

    • .names
    • .ncol
    • .nrow

v0.1.5

12 Oct 15:03
Compare
Choose a tag to compare
  • New Tibble methods

    • .fill()
    • .head()
    • .pivot_longer()
    • .pivot_wider()
    • .tail()
    • .slice_head()
    • .slice_tail()
  • New expression methods

    • .lag()
    • .lead()

v0.1.4

07 Oct 10:41
Compare
Choose a tag to compare
  • New methods
    • .bind_cols()
    • .bind_rows()
    • .distinct()
    • .pull()
    • .rename()
    • .slice()