@@ -150,6 +150,8 @@ public typealias AddExpression<T, R> = Selector<AddDataRow<T>, R>
150150 * }
151151 * ```
152152 *
153+ * For more information: {@include [DocumentationUrls.Add]}.
154+ *
153155 * @param name name for a new column.
154156 * If it is empty, a unique column name will be generated.
155157 * Otherwise, it should be unique for original [DataFrame].
@@ -193,6 +195,8 @@ public inline fun <reified R, T> DataFrame<T>.add(
193195 * including [newValue][AddDataRow.newValue] to retrieve already computed values of this column
194196 * in previous rows.
195197 *
198+ * For more information: {@include [DocumentationUrls.Add]}.
199+ *
196200 * Returns a new [DataFrame] with the new column inserted at the given [path].
197201 * {@include [org.jetbrains.kotlinx.dataframe.documentation.ColumnPathCreation]}
198202 *
@@ -351,6 +355,8 @@ public class AddDsl<T>(
351355 * }
352356 * ```
353357 *
358+ * For more information: {@include [DocumentationUrls.Add]}.
359+ *
354360 * @param body An [AddDsl] expression used to define new columns and column groups.
355361 * @return A new [DataFrame] with the added columns.
356362 */
@@ -391,6 +397,8 @@ public fun <T> DataFrame<T>.add(body: AddDsl<T>.() -> Unit): DataFrame<T> {
391397 * }
392398 * ```
393399 *
400+ * For more information: {@include [DocumentationUrls.Add]}.
401+ *
394402 * @param name name for a new column.
395403 * If it is empty, a unique column name will be generated.
396404 * Otherwise, it should be unique for original group [DataFrame]s.
0 commit comments