- Fixed Tests for Forumula.jl ([#700])
- Now handles Julia0.4
dicts
([#698]) - Now using ReadTheDocs
Internal changes to adjust to JuliaLang/julia#5897
Continues trend of stripping down features and improving core functionality.
- append!(::AbstractDataFrame, ::AbstractDataFrame) (#506)
join
supports:semi
-,:anti
- and:cross
-joins (#524, #536)- Implement
eltypes
argument inreadtable
(#497) - Read from generic IO objects (#499)
- Convert to using only symbols (no more strings) for column names (#509)
- Renames
stack_df
,melt_df
,pivot_table
tostackdf
,meltdf
,pivottable
(#538) - Renames
duplicated
,drop_duplicates!
tononunique
,unique!
(#538) - Renames
load_df
toloaddf
(#538) - Renames
types
toeltypes
(#539) - Renames
readtable
argumentcolnames
tonames
(#497)
- Removes expression-based indexing, including
with
,within!
,based_on
, etc. (#492) - Removes
DataStream
(#492) - Removes
NamedArray
(#492) - Removes column groupings (
set_groups
,get_groups
, etc.) (#492) - Removes specific colwise and rowwise functions (
rowsums
,colnorms
, etc.) (#492) - Removes
@DataFrame
and@transform
(#492) - Deprecates natural
join
s: the key must be specified now (#536)
Removing prototype features until core functionality is farther along.
- Write
Formula
s without quoting, thanks to the@~
macro (JuliaLang/julia#4882) - Renames
EachCol
,EachRow
toeachcol
,eachrow
(#474) eachrow
returns aDataFrameRow
(#474)SubDataFrames
are now immutable (#474)
- Removes
IndexedVector
(#483) - Removes
Blocks.jl
functionality (#483) - Removes methods that treat DataFrame like a matrix, e.g
round
,sin
(#484) - Deprecates
sub
's aliassubset
(#474)
Improved I/O and more-Julian idioms.
- Write HTML tables via writemime (#433)
- Read whitespace-delimited input (#443)
- Read input with C-style escapes (#454)
sort
interface updated to better match mainline Julia (#389)names!
,rename!
, anddelete!
now return the updated Index, rather than the names in the Index (#445)- Renames
coltypes
,colnames
,clean_colnames!
totypes
,names
,cleannames!
(#469) - Various improvements to
print
/show
methods
- Deprecates
rbind
,cbind
andvecbind
deprecated in favor ofhcat
andvcat
(#453)