Skip to content

Commit 3e1351e

Browse files
join kdocs fixes
1 parent abd2e9b commit 3e1351e

File tree

1 file changed

+18
-0
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package org.jetbrains.kotlinx.dataframe.documentation
2+
3+
import org.jetbrains.kotlinx.dataframe.DataFrame
4+
5+
/**
6+
* ## Auto-renaming in [DataFrame]
7+
*
8+
* In some operations, multiple columns with the same name may appear
9+
* in the resulting [DataFrame].
10+
*
11+
* In such cases, columns with duplicate names are automatically renamed
12+
* using the pattern `"\$name\$n"`, where `name` is the original column name
13+
* and `n` is a unique index (1, 2, 3, and so on); the first name column goes without a number.
14+
*
15+
* It is recommended to [rename][org.jetbrains.kotlinx.dataframe.api.rename] them
16+
* to maintain clarity and improve code readability.
17+
*/
18+
internal interface AutoRenaming

0 commit comments

Comments
 (0)