Skip to content

Commit

Permalink
updates README and RELEASE_NOTES for the 0.19.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vmzakharov committed Apr 2, 2024
1 parent 7896b9b commit 839661b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For more on Eclipse Collections see: https://www.eclipse.org/collections/.
<dependency>
<groupId>io.github.vmzakharov</groupId>
<artifactId>dataframe-ec</artifactId>
<version>0.19.7</version>
<version>0.19.8</version>
</dependency>
```
## Code Kata
Expand All @@ -22,7 +22,7 @@ Learn dataframe-ec with Kata! Check out [dataframe-ec kata](https://github.com/v
- **create** a data frame programmatically or load from a csv file
- **add a column** to a data frame, columns can be
- stored or computed
- of type: string, integer (long), double, date, date/time
- of type: string, long, int, double, float, date, date/time
- **drop** one or more **columns**
- **select** a subset of rows based on a criteria
- **sort** by one or more columns or by an expression
Expand Down Expand Up @@ -194,7 +194,8 @@ The following aggregation functions are supported
- `sum`
- `min`
- `max`
- `avg`
- `avg` - average, the return value is of the same type as the input data
- `avg2d` - average, the return value is of type double for any primitive input type
- `count`
- `same` - the result is `null` if the aggregated values are not the equal to each other, otherwise it equals to that value

Expand Down
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Releases
### 0.19.8
* adds support for columns of primitive int and float types
* adds a built-in aggregation function `avg2d` that produces values of type double for all primitive column types
### 0.19.7
* adds support for sorting the order of value columns by their header values when pivoting a data frame
* add an option to the data frame compare utility to ignore the column order
Expand Down

0 comments on commit 839661b

Please sign in to comment.