[//]: # (title: remove)
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.
```kotlin
df.remove { name and weight }
```
```kotlin
df.remove("name", "weight")
```