Skip to content

Releases: uwdata/arquero

v4.7.0

18 May 14:27
Compare
Choose a tag to compare

Changes from v4.6.0:

  • Add table transform() method to allow lightweight application of custom transformations.
  • Add agg() helper method as a shorthand for computing a single aggregate value.
  • Add default 100 row limit to toHTML() and toMarkdown(). (#175)
  • Update to toHTML() to align column header similarly to the column body. (#176)

v4.6.0

12 May 20:56
Compare
Choose a tag to compare

Changes from v4.5.0:

v4.5.0

09 May 21:26
Compare
Choose a tag to compare

Changes from v4.4.0:

  • Add decimal separator option to fromCSV(). (#160)
  • Add table object() method to extract individual row objects.
  • Add table values() method to return an iterator over column values, respecting filter and orderby criteria.
  • Add table array() method to return a column value array, respecting filter and orderby criteria.
  • Add more detailed messages for variable and function lookup errors.
  • Fix error message for when no window functions are allowed.
  • Refactor expression parser error message handler.
  • Deprecate table columnArray() method in favor of table array() method.

v4.4.0

28 Apr 11:02
Compare
Choose a tag to compare

Changes from v4.3.0:

  • Add array constructor argument to table columnArray() method.
  • Update dependencies, including Apache Arrow v4. (thanks @domoritz!)

v4.3.0

23 Apr 14:33
Compare
Choose a tag to compare

Changes from v4.2.0:

v4.2.0

22 Apr 11:19
Compare
Choose a tag to compare

Changes from v4.1.4:

  • Add step option to aq.bin helper function.
  • Add step argument to op.bins aggregate function.
  • Fix op functions to properly handle null-valued inputs.
  • Add test cases for op functions.

v4.1.4

02 Apr 19:04
Compare
Choose a tag to compare

Changes from v4.1.3:

  • Fix hash join lookup table regression.

v4.1.3

02 Apr 07:26
Compare
Choose a tag to compare

Changes from v4.1.2:

  • Add hash-join support to optimize semijoin() and antijoin().
  • Refactor join utilities.

v4.1.2

31 Mar 16:44
Compare
Choose a tag to compare

Changes from v4.1.1:

  • Fix ordered aggregate scan. (#133)

v4.1.1

30 Mar 11:35
Compare
Choose a tag to compare

Changes from v4.1.0:

  • Update aggregate calculations to be sensitive to orderby() criteria.