@@ -104,7 +104,7 @@ private interface SetInsertOperationArg
104
104
* df.insert(count).after { url }
105
105
* ```
106
106
*
107
- * @param column A single [DataColumn] to insert into the [DataFrame].
107
+ * @param [ column] A single [DataColumn] to insert into the [DataFrame].
108
108
* @return An [InsertClause] for specifying the placement of the new column.
109
109
*/
110
110
public fun <T , C > DataFrame<T>.insert (column : DataColumn <C >): InsertClause <T > = InsertClause (this , column)
@@ -132,9 +132,9 @@ public fun <T, C> DataFrame<T>.insert(column: DataColumn<C>): InsertClause<T> =
132
132
* }.under("math")
133
133
* ```
134
134
*
135
- * @param name The name of the new column to be created and inserted.
136
- * @param infer Controls how values are inferred when building the new column. Defaults to [Infer.Nulls].
137
- * @param expression An [AddExpression] that computes the value for each row of the new column.
135
+ * @param [ name] The name of the new column to be created and inserted.
136
+ * @param [ infer] Controls how values are inferred when building the new column. Defaults to [Infer.Nulls].
137
+ * @param [ expression] An [AddExpression] that computes the value for each row of the new column.
138
138
* @return An [InsertClause] for specifying the placement of the newly created column.
139
139
*/
140
140
@Interpretable(" Insert1" )
@@ -230,7 +230,7 @@ public fun <T> InsertClause<T>.under(column: ColumnSelector<T, *>): DataFrame<T>
230
230
* df.insert(age).under(pathOf("info", "personal"))
231
231
* ```
232
232
*
233
- * @param columnPath The [ColumnPath] specifying the path to a column group in this [DataFrame]
233
+ * @param [ columnPath] The [ColumnPath] specifying the path to a column group in this [DataFrame]
234
234
* under which the new column will be inserted.
235
235
* @return A new [DataFrame] with the inserted column placed under the specified column group.
236
236
*/
@@ -263,7 +263,7 @@ public fun <T> InsertClause<T>.under(column: KProperty<*>): DataFrame<T> = under
263
263
* df.insert(age).under("info")
264
264
* ```
265
265
*
266
- * @param column The [name][String] of the column group in this [DataFrame].
266
+ * @param [ column] The [name][String] of the column group in this [DataFrame].
267
267
* If the group does not exist, it will be created.
268
268
* @return A new [DataFrame] with the inserted column placed under the specified column group.
269
269
*/
@@ -294,7 +294,7 @@ public fun <T> InsertClause<T>.under(column: String): DataFrame<T> = under(pathO
294
294
* val dfWithSum = df.insert("sum") { a + b }.after { stats.min }
295
295
* ```
296
296
*
297
- * @param column The [ColumnSelector] used to choose an existing column in this [DataFrame],
297
+ * @param [ column] The [ColumnSelector] used to choose an existing column in this [DataFrame],
298
298
* after which the new column will be inserted.
299
299
* @return A new [DataFrame] with the inserted column placed after the selected column.
300
300
*/
@@ -318,7 +318,7 @@ public fun <T> InsertClause<T>.after(column: ColumnSelector<T, *>): DataFrame<T>
318
318
* df.insert(age).after("name")
319
319
* ```
320
320
*
321
- * @param column The [String] name of the column in this [DataFrame]
321
+ * @param [ column] The [String] name of the column in this [DataFrame]
322
322
* after which the new column will be inserted.
323
323
* @return A new [DataFrame] with the inserted column placed after the specified column.
324
324
*/
@@ -363,7 +363,7 @@ internal fun <T> InsertClause<T>.afterImpl(columnPath: ColumnPath): DataFrame<T>
363
363
* df.insert(age).at(3)
364
364
* ```
365
365
*
366
- * @param position The [Int] index where the new column should be inserted.
366
+ * @param [ position] The [Int] index where the new column should be inserted.
367
367
* Columns currently at this index and after will be shifted right.
368
368
* @return A new [DataFrame] with the inserted column placed at the specified position.
369
369
*/
0 commit comments