We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4ee8b commit ca30467Copy full SHA for ca30467
docs/user-guide/preview.qmd
@@ -100,12 +100,12 @@ since `hour` and `minute` are derived from `sched_dep_time` (and this lets us sp
100
issues).
101
102
We can also use column selectors within `columns_subset=`. Suppose we want to only see those columns
103
-that have `"dep"` in the name. To do that, we use the
+that have `"dep_"` or `"arr_"` in the name. To do that, we use the
104
[`matches()`](https://posit-dev.github.io/pointblank/reference/matches.html) column selector
105
function:
106
107
```{python}
108
-pb.preview(nycflights, columns_subset=pb.matches("dep"))
+pb.preview(nycflights, columns_subset=pb.matches("dep_|arr_"))
109
```
110
111
Several selectors can be combined together through use of the
0 commit comments