Skip to content

Commit 6ed9e24

Browse files
quickstart improvements
1 parent 8f784cd commit 6ed9e24

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

docs/StardustDocs/topics/guides/quickstart.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ columns.
8888
Column selectors are widely used across operations — one of the simplest examples is `.select { }`, which returns a new
8989
DataFrame with only the columns chosen in Columns Selection expression.
9090

91-
After executing the cell where a `DataFrame` variable is declared, an extension with properties for its columns is
92-
automatically generated.
91+
After executing the cell where a `DataFrame` variable is declared,
92+
[extension properties](extensionPropertiesApi.md) for its columns are automatically generated.
9393
These properties can then be used in the Columns Selection DSL expression for typesafe and convenient column access.
9494

9595
Select some columns:
@@ -104,15 +104,17 @@ dfSelected
104104

105105
<!---END-->
106106

107+
<inline-frame src="./resources/notebook_test_quickstart_5.html" width="705px" height="500px"></inline-frame>
108+
107109
> With a [Kotlin DataFrame Compiler Plugin](Compiler-Plugin.md) enabled,
108110
> you can use auto-generated properties in your IntelliJ IDEA projects.
109111
110-
<inline-frame src="./resources/notebook_test_quickstart_5.html" width="705px" height="500px"></inline-frame>
111-
112-
## Raw Filtering
112+
## Row Filtering
113113

114-
Some operations use `RowExpression`, i.e., expression that applies for all `DataFrame` rows. For example `.filter { }`
115-
that returns a new `DataFrame` with rows that satisfy a condition given by row expression.
114+
Some operations use [DataRow API](DataRow.md), with expressions and conditions
115+
that apply for all `DataFrame` rows.
116+
For example, `.filter { }` that returns a new `DataFrame` with rows \
117+
that satisfy a condition given by row expression.
116118

117119
Inside a row expression, you can access the values of the current row by column names through auto-generated properties.
118120
Similar to the Columns Selection DSL, but in this case the properties represent actual values, not column references.

0 commit comments

Comments
 (0)