We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6810ba2 commit b290df7Copy full SHA for b290df7
README.md
@@ -23,15 +23,15 @@ Let's take a Polars DataFrame and validate it against a set of constraints. We d
23
```python
24
import pointblank as pb
25
26
-v = (
+validation = (
27
pb.Validate(data=pb.load_dataset(dataset="small_table")) # Use pb.Validate to start
28
.col_vals_gt(columns="d", value=100) # STEP 1 |
29
.col_vals_le(columns="c", value=5) # STEP 2 | <-- Build up a validation plan
30
.col_exists(columns=["date", "date_time"]) # STEP 3 |
31
.interrogate() # This will execute all validation steps and collect intel
32
)
33
34
-v.get_tabular_report()
+validation
35
```
36
37
<img src="images/pointblank-tabular-report.png" alt="Validation Report">
0 commit comments