init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[//]: # (title: remove)
<!---IMPORT org.jetbrains.kotlinx.dataframe.samples.api.Modify-->
Returns [`DataFrame`](DataFrame.md) without selected columns.
```text
remove { columns }
```
Related operations: [](addRemove.md)
See [column selectors](ColumnSelectors.md) for how to select the columns for this operation.
<!---FUN remove-->
<tabs>
<tab title="Properties">
```kotlin
df.remove { name and weight }
```
</tab>
<tab title="Strings">
```kotlin
df.remove("name", "weight")
```
</tab></tabs>
<inline-frame src="resources/org.jetbrains.kotlinx.dataframe.samples.api.Modify.remove.html" width="100%"/>
<!---END-->