NRo DataFrame Versions Save

DataFrame Library for Java

0.7.6

4 years ago
  • join performance improved
  • outer join added
  • LIKE predicate added

0.7.5.3

5 years ago
  • table printer added
  • column type detection fixed
  • CSV quote detection fixed

0.7.5.2

6 years ago
  • toList and asList added to columns
  • aggregation of NA values fixed
  • small bug fixes

0.7.5.1

6 years ago
  • csv reader performance improved
  • csv reader column select fixed
  • empty column append fixed

v0.7.5

6 years ago
  • direct value access for DataRow object.

    DataRows now directly access the respective values from the columns.
    This improves runtime and memory footprint for most DataFrame operations. DataRow objects are invalidated once the source DataFrame is changed.
    Accessing an invalidated row results in an exception

  • Row collections are now return as DataRows object.
    DataRows can be converted to a new DataFrame

  • improved 'groupBy' method

v0.7.1

6 years ago
  • interval indices added
  • bugfixes

v0.7

6 years ago
  • read and write functions have been rewritten from scratch for this version. Some existing methods have beed removed.

  • column types can be detected automatically

  • Data grouping has been refactored and aggregation functions can now be applied to data groupings.

  • Data groupings can now be used like normal DataFrames.

  • Java 8 is now required.

  • Empty DataFrame instances are now created using DataFrame.create()

v0.6.1

6 years ago
  • CSV loading, writing
  • filter predicates (object and query text based)
  • dataframe join (left, right, inner)
  • groupBy
  • sort
  • column operations