From f47f0724fa5f077aec402bf57e571204a294023e Mon Sep 17 00:00:00 2001 From: alexpantyukhin Date: Mon, 13 Aug 2018 18:02:11 +0400 Subject: [PATCH] fix for Format function. --- src/Deedle/Frame.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Deedle/Frame.fs b/src/Deedle/Frame.fs index df348ac6..4ec792c3 100644 --- a/src/Deedle/Frame.fs +++ b/src/Deedle/Frame.fs @@ -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.