We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf8463 commit 9fdd5e3Copy full SHA for 9fdd5e3
core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/rename.kt
@@ -60,7 +60,7 @@ public fun <T> DataFrame<T>.renameToCamelCase(): DataFrame<T> = this
60
61
// convert all first chars of all columns to the lowercase
62
.rename {
63
- allDfs()
+ cols { !it.isColumnGroup() }.recursively()
64
}.into {
65
it.name.replaceFirstChar { it.lowercaseChar() }
66
}
0 commit comments