@@ -88,8 +88,8 @@ columns.
88
88
Column selectors are widely used across operations — one of the simplest examples is ` .select { } ` , which returns a new
89
89
DataFrame with only the columns chosen in Columns Selection expression.
90
90
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.
93
93
These properties can then be used in the Columns Selection DSL expression for typesafe and convenient column access.
94
94
95
95
Select some columns:
@@ -104,15 +104,17 @@ dfSelected
104
104
105
105
<!-- -END-->
106
106
107
+ <inline-frame src =" ./resources/notebook_test_quickstart_5.html " width =" 705px " height =" 500px " ></inline-frame >
108
+
107
109
> With a [ Kotlin DataFrame Compiler Plugin] ( Compiler-Plugin.md ) enabled,
108
110
> you can use auto-generated properties in your IntelliJ IDEA projects.
109
111
110
- <inline-frame src =" ./resources/notebook_test_quickstart_5.html " width =" 705px " height =" 500px " ></inline-frame >
111
-
112
- ## Raw Filtering
112
+ ## Row Filtering
113
113
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.
116
118
117
119
Inside a row expression, you can access the values of the current row by column names through auto-generated properties.
118
120
Similar to the Columns Selection DSL, but in this case the properties represent actual values, not column references.
0 commit comments