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 f8fc892 commit 4a2915aCopy full SHA for 4a2915a
docs/user-guide/preprocessing.qmd
@@ -157,7 +157,7 @@ DataFrame with in lambda expression in `pre=`:
157
data_original = pb.load_dataset("small_table")
158
data_transformed = data_original.group_by("f").len(name="n")
159
160
-v = (
+validation = (
161
pb.Validate(
162
data=pb.load_dataset(dataset="small_table", tbl_type="polars"),
163
tbl_name="small_table",
@@ -166,6 +166,8 @@ v = (
166
.col_vals_ge(columns="n", value=3, pre=lambda x: data_transformed)
167
.interrogate()
168
)
169
+
170
+validation
171
```
172
173
We can see from the validation report table that there are three test units. This corresponds to a
0 commit comments