Spaces:
Running
Running
Debajyoti Debnath
commited on
Commit
·
50fbb8e
1
Parent(s):
7c8994a
Fix typo in union operator in column selector table
Browse files
polars/08_working_with_columns.py
CHANGED
@@ -479,7 +479,7 @@ def _(mo):
|
|
479 |
|
480 |
| Operator | Operation |
|
481 |
|:--------:|:--------------------:|
|
482 |
-
| `A
|
483 |
| `A & B` | Intersection |
|
484 |
| `A - B` | Difference |
|
485 |
| `A ^ B` | Symmetric difference |
|
|
|
479 |
|
480 |
| Operator | Operation |
|
481 |
|:--------:|:--------------------:|
|
482 |
+
| `A | B` | Union |
|
483 |
| `A & B` | Intersection |
|
484 |
| `A - B` | Difference |
|
485 |
| `A ^ B` | Symmetric difference |
|