Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for Format function. #416

Merged
merged 1 commit into from Aug 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Deedle/Frame.fs
Expand Up @@ -1287,7 +1287,7 @@ and Frame<'TRowKey, 'TColumnKey when 'TRowKey : equality and 'TColumnKey : equal
/// [category:Formatting and raw data access]
member frame.Format(count) =
let half = count / 2
frame.Format(count, count)
frame.Format(half, half)

/// Shows the data frame content in a human-readable format. The resulting string
/// shows all columns, but a limited number of rows.
Expand Down