diff --git a/docs/StardustDocs/topics/createDataFrame.md b/docs/StardustDocs/topics/createDataFrame.md index 163c316587..36058e462f 100644 --- a/docs/StardustDocs/topics/createDataFrame.md +++ b/docs/StardustDocs/topics/createDataFrame.md @@ -142,9 +142,11 @@ df.add("length") { value.length } Creates a [`DataFrame`](DataFrame.md) from an [`Iterable`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/) with one column: -"columnName: `DataColumn`". +"columnName: `DataColumn`": + This is an easy way to create a [`DataFrame`](DataFrame.md) when you have a list of Files, URLs, or a structure you want to extract data from. + In a notebook, it can be convenient to start from the column of these values to see the number of rows, their `toString` in a table and then iteratively add columns with the parts of the data you're interested in.