You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This DSL is initiated by a [Columns Selector][org.jetbrains.kotlinx.dataframe.ColumnsSelector] lambda,
51
+
* which operates on the [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl] and
52
+
* expects you to return a [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver]; an entity formed by calling any (combination) of the functions
53
+
* in the DSL that is or can be resolved into one or more columns.
* #### NOTE: There's also a 'single column' variant used sometimes: [Column Selection DSL][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns.DslSingle.WithExample].
* Returns a new [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] with only the columns selected by [columns][org.jetbrains.kotlinx.dataframe.columns].
110
+
*
111
+
* See [Selecting Columns][org.jetbrains.kotlinx.dataframe.api.Select.SelectSelectingOptions].
112
+
*
113
+
* For more information: [See `select` on the documentation website.](https://kotlin.github.io/dataframe/select.html)
114
+
* ### This Select Overload
115
+
*/
116
+
privateinterfaceCommonSelectDocs
117
+
118
+
/**
119
+
* ## The Select Operation
120
+
*
121
+
* Returns a new [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] with only the columns selected by [columns][org.jetbrains.kotlinx.dataframe.columns].
122
+
*
123
+
* See [Selecting Columns][org.jetbrains.kotlinx.dataframe.api.Select.SelectSelectingOptions].
124
+
*
125
+
* For more information: [See `select` on the documentation website.](https://kotlin.github.io/dataframe/select.html)
126
+
* ### This Select Overload
127
+
* Select or express columns using the [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl].
* This DSL is initiated by a [Columns Selector][org.jetbrains.kotlinx.dataframe.ColumnsSelector] lambda,
131
+
* which operates on the [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl] and
132
+
* expects you to return a [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver]; an entity formed by calling any (combination) of the functions
133
+
* in the DSL that is or can be resolved into one or more columns.
* Returns a new [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] with only the columns selected by [columns][org.jetbrains.kotlinx.dataframe.columns].
158
+
*
159
+
* See [Selecting Columns][org.jetbrains.kotlinx.dataframe.api.Select.SelectSelectingOptions].
160
+
*
161
+
* For more information: [See `select` on the documentation website.](https://kotlin.github.io/dataframe/select.html)
162
+
* ### This Select Overload
163
+
* Select columns using [KProperties][KProperty] ([KProperties API][org.jetbrains.kotlinx.dataframe.documentation.AccessApi.KPropertiesApi]).
164
+
*
165
+
* #### For example:
166
+
* ```kotlin
167
+
* data class Person(val length: Double, val age: Double)
* Returns a new [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] with only the columns selected by [columns][org.jetbrains.kotlinx.dataframe.columns].
180
+
*
181
+
* See [Selecting Columns][org.jetbrains.kotlinx.dataframe.api.Select.SelectSelectingOptions].
182
+
*
183
+
* For more information: [See `select` on the documentation website.](https://kotlin.github.io/dataframe/select.html)
184
+
* ### This Select Overload
185
+
* Select columns using their [column names][String]
* Returns a new [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] with only the columns selected by [columns][org.jetbrains.kotlinx.dataframe.columns].
200
+
*
201
+
* See [Selecting Columns][org.jetbrains.kotlinx.dataframe.api.Select.SelectSelectingOptions].
202
+
*
203
+
* For more information: [See `select` on the documentation website.](https://kotlin.github.io/dataframe/select.html)
204
+
* ### This Select Overload
205
+
* Select columns using [column accessors][org.jetbrains.kotlinx.dataframe.columns.ColumnReference]
0 commit comments