Skip to content

Commit

Permalink
Change default show method to show all columns
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmyleswhite committed Jun 10, 2014
1 parent 7ee7651 commit 26ae562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dataframe/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ end
#' show(STDOUT, df, false, "Row #", true)
function Base.show(io::IO,
adf::AbstractDataFrame,
splitchunks::Bool = false,
splitchunks::Bool = true,
rowlabel::Symbol = symbol("Row #"),
displaysummary::Bool = true) # -> Nothing
nrows = size(adf, 1)
Expand Down Expand Up @@ -482,7 +482,7 @@ end
#' df = DataFrame(A = 1:3, B = ["x", "y", "z"])
#' show(df, true)
function Base.show(adf::AbstractDataFrame,
splitchunks::Bool = false) # -> Nothing
splitchunks::Bool = true) # -> Nothing
return show(STDOUT, adf, splitchunks)
end

Expand Down

0 comments on commit 26ae562

Please sign in to comment.