Skip to content

Commit

Permalink
Merge pull request #287 from HarlanH/readtable
Browse files Browse the repository at this point in the history
Clean and fast `readtable` implementation
  • Loading branch information
johnmyleswhite committed Jun 20, 2013
2 parents 93e8d1d + 54f4374 commit 664f792
Show file tree
Hide file tree
Showing 6 changed files with 666 additions and 641 deletions.
16 changes: 13 additions & 3 deletions src/DataFrames.jl
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ export # reconcile_groups,
PooledDataArray,
PooledDataMatrix,
PooledDataVector,
print_table,
printtable,
range,
rbind,
read_minibatch,
read_table,
readtable,
reldiff,
removeNA,
rename_group!,
Expand Down Expand Up @@ -198,7 +198,7 @@ export # reconcile_groups,
within!,
within,
without,
write_table,
writetable,
xtab,
xtabs,
stack_df,
Expand All @@ -221,6 +221,16 @@ export # reconcile_groups,
read_rda,
vecbind

##############################################################################
##
## Deprecations
##
##############################################################################

Base.@deprecate read_table readtable
Base.@deprecate print_table printtable
Base.@deprecate write_table writetable

##############################################################################
##
## Load files
Expand Down
Loading

0 comments on commit 664f792

Please sign in to comment.