Skip to content

Commit 2e719dc

Browse files
authored
Updating DataFrame.print to add RowIndex property
Adding a missing parameter for the current public route to AnyFrame.renderToString to give all options present in the internal function
1 parent d55f824 commit 2e719dc

File tree

1 file changed

+2
-1
lines changed
  • core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+2
-1
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/print.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public fun <T> DataFrame<T>.print(
2727
alignLeft: Boolean = false,
2828
columnTypes: Boolean = false,
2929
title: Boolean = false,
30-
): Unit = println(renderToString(rowsLimit, valueLimit, borders, alignLeft, columnTypes, title))
30+
rowIndex: Boolean = true,
31+
): Unit = println(renderToString(rowsLimit, valueLimit, borders, alignLeft, columnTypes, title, rowIndex))
3132

3233
// endregion
3334

0 commit comments

Comments
 (0)