-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to SubDataFrames, implementation of DataFrameRow
* Parametrize SubDataFrames by T<:AbstractVector{Int} * Changed SubDataFrame to immutable * DRYed out sub() functions * Deprecated subset (alias for sub), on the theory that we should remove redundant methods like this * Add show() for DataFrameRow * Change EachRow, EachCol -> eachrow, eachcol, to better match Base convention for iterators * Return DataFrameRows from eachrow * Changed Sort.lt comparisons to compare DataFrameRows (for issorted) * Specialize collect(r::DataFrameRow), so that Dict(collect(r::DataFrameRow)) works * Start to use size(df, 1) for nrow(df), size(df, 2) for ncol(df)
- Loading branch information
Showing
4 changed files
with
117 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters