@@ -150,6 +150,8 @@ public typealias AddExpression<T, R> = Selector<AddDataRow<T>, R>
150
150
* }
151
151
* ```
152
152
*
153
+ * For more information: {@include [DocumentationUrls.Add]}.
154
+ *
153
155
* @param name name for a new column.
154
156
* If it is empty, a unique column name will be generated.
155
157
* Otherwise, it should be unique for original [DataFrame].
@@ -193,6 +195,8 @@ public inline fun <reified R, T> DataFrame<T>.add(
193
195
* including [newValue][AddDataRow.newValue] to retrieve already computed values of this column
194
196
* in previous rows.
195
197
*
198
+ * For more information: {@include [DocumentationUrls.Add]}.
199
+ *
196
200
* Returns a new [DataFrame] with the new column inserted at the given [path].
197
201
* {@include [org.jetbrains.kotlinx.dataframe.documentation.ColumnPathCreation]}
198
202
*
@@ -351,6 +355,8 @@ public class AddDsl<T>(
351
355
* }
352
356
* ```
353
357
*
358
+ * For more information: {@include [DocumentationUrls.Add]}.
359
+ *
354
360
* @param body An [AddDsl] expression used to define new columns and column groups.
355
361
* @return A new [DataFrame] with the added columns.
356
362
*/
@@ -391,6 +397,8 @@ public fun <T> DataFrame<T>.add(body: AddDsl<T>.() -> Unit): DataFrame<T> {
391
397
* }
392
398
* ```
393
399
*
400
+ * For more information: {@include [DocumentationUrls.Add]}.
401
+ *
394
402
* @param name name for a new column.
395
403
* If it is empty, a unique column name will be generated.
396
404
* Otherwise, it should be unique for original group [DataFrame]s.
0 commit comments