Skip to content

Releases: JuliaData/DataFrames.jl

Version 0.11.1

26 Nov 06:34
f031a3d
Compare
Choose a tag to compare
  • Fix DataStreams allocate with CategoricalString.

Version 0.11.0

24 Nov 17:22
7cc19d5
Compare
Choose a tag to compare

This is a breaking release. Deprecations are in place where possible, but code will need to be adjusted to work with the new framework. Changes:

  • NA (from the DataArrays package) has been replaced with missing (from the Missings package, and soon in Julia Base).
  • Columns are no longer converted to DataArray: do it manually if you want to use this type, or use Vector{Union{T, Missing}}. PooledDataArray should be replaced with either CategoricalArray or PooledArray.
  • Modeling features have been moved to the StatsModels package.
  • readtable and writetable habe been deprecated in favor of CSV.read and CSV.write from the CSV package.
  • Joining and grouping algorithm has been improved to be faster and no longer fails when number of groups is too high.
  • complete_cases(!) functions have been rework and new dropnull(!) functions added.
  • Concatenation code has been reworked, with better error messages.
  • The manual has been improved.
  • Printing has been improved.
  • And many other fixes and improvements.

Version 0.10.1

05 Aug 02:04
Compare
Choose a tag to compare
Fixed Compat UTF8String deprecation warnings. (#1203)

Replaced all instances of Compat.UTF8String with String.
NOTE: Compat deprecated UTF8String when it dropped julia-0.4 support.

v0.10.0

18 May 19:04
Compare
Choose a tag to compare
Move describe code for Arrays out of DataFrames (#1185)

v0.9.1: Fix handling of non-Int row indices (#1177)

19 Apr 17:05
Compare
Choose a tag to compare
Non-Int row-indices were not being correctly converted to Int.

- explicit conversion to Vector{Int}
- test-cases added

v0.9.0

11 Mar 22:58
Compare
Choose a tag to compare

Support for Julia 0.6. Julia 0.4 support dropped.

Version 0.6.6

18 Aug 22:17
Compare
Choose a tag to compare
  • Deprecates array(df, ...) in favor of convert(Array, df, ...) ([#806])
  • Deprecates DataArray(df, T) in favor of convert(DataArray{T}, df) ([#806])

DataFrames v0.6.2

19 Mar 19:02
Compare
Choose a tag to compare
Merge pull request #785 from JuliaStats/desc

Accept AbstractVector in describe()

DataFrames v0.6.1

13 Feb 16:42
Compare
Choose a tag to compare
Merge pull request #766 from JuliaStats/concat

Track Julia 0.4 Array concatenation syntax

DataFrames v0.6.0

01 Jan 03:21
Compare
Choose a tag to compare
Merge pull request #753 from JuliaStats/news

Updating doc and cleaning house for overdue release