Pulling out data extracts that highlight rows with validation failures.
Validation with failures at Step 2:
Pointblank Validation
Validation with test unit failures available as an extract
Polarsgame_revenue
STEP
COLUMNS
VALUES
TBL
EVAL
UNITS
PASS
FAIL
W
E
C
EXT
#4CA64C
1
col_vals_gt()
item_revenue
0
✓
2000
2000 1.00
0 0.00
—
—
—
—
#4CA64C66
2
col_vals_ge()
session_duration
5
✓
2000
1986 0.99
14 0.01
—
—
—
2026-04-22 21:13:35 UTC< 1 s2026-04-22 21:13:35 UTC
Extract from Step 2 (which has 14 failing test units):
PolarsRows14Columns12
player_id
String
session_id
String
session_start
Datetime
time
Datetime
item_type
String
item_name
String
item_revenue
Float64
session_duration
Float64
start_day
Date
acquisition
String
country
String
549
QNLVRDEOXFYJ892
QNLVRDEOXFYJ892-lz5fmr6k
2015-01-10 16:44:17+00:00
2015-01-10 16:45:29+00:00
iap
gold3
3.49
3.7
2015-01-09
crosspromo
Australia
663
GFLYJHAPMZWD631
GFLYJHAPMZWD631-i2v1bl7a
2015-01-11 16:13:24+00:00
2015-01-11 16:14:54+00:00
iap
gems2
3.99
3.6
2015-01-09
organic
India
772
BFNLURISJXTH647
BFNLURISJXTH647-6o5hx27z
2015-01-12 17:37:39+00:00
2015-01-12 17:39:27+00:00
iap
offer5
11.59
4.1
2015-01-10
organic
India
773
BFNLURISJXTH647
BFNLURISJXTH647-6o5hx27z
2015-01-12 17:37:39+00:00
2015-01-12 17:41:45+00:00
iap
gems3
9.99
4.1
2015-01-10
organic
India
908
KILWZYHRSJEG316
KILWZYHRSJEG316-uke7dhqj
2015-01-13 22:16:29+00:00
2015-01-13 22:17:35+00:00
iap
offer2
10.99
3.2
2015-01-04
organic
Denmark
1037
JUBDVFHCNQWT198
JUBDVFHCNQWT198-9h4xs2pb
2015-01-14 16:08:25+00:00
2015-01-14 16:08:43+00:00
iap
offer5
8.69
3.3
2015-01-14
organic
Philippines
1038
JUBDVFHCNQWT198
JUBDVFHCNQWT198-9h4xs2pb
2015-01-14 16:08:25+00:00
2015-01-14 16:11:01+00:00
iap
offer4
5.99
3.3
2015-01-14
organic
Philippines
1455
GJCXNTWEBIPQ369
GJCXNTWEBIPQ369-46cdjzy7
2015-01-17 11:25:25+00:00
2015-01-17 11:28:01+00:00
iap
offer4
13.99
4.6
2015-01-14
organic
United States
1516
OMCVUAIKSDTR651
OMCVUAIKSDTR651-yso9e1b2
2015-01-17 20:58:34+00:00
2015-01-17 21:01:34+00:00
iap
offer3
10.49
4.2
2015-01-07
other_campaign
United States
1517
OMCVUAIKSDTR651
OMCVUAIKSDTR651-yso9e1b2
2015-01-17 20:58:34+00:00
2015-01-17 21:02:34+00:00
iap
offer5
20.29
4.2
2015-01-07
other_campaign
United States
1913
MTCIWKOVASYP925
MTCIWKOVASYP925-1q3xvfmp
2015-01-20 12:34:43+00:00
2015-01-20 12:35:37+00:00
iap
offer5
26.09
3.9
2015-01-14
organic
Germany
1914
MTCIWKOVASYP925
MTCIWKOVASYP925-1q3xvfmp
2015-01-20 12:34:43+00:00
2015-01-20 12:37:25+00:00
iap
gold2
1.79
3.9
2015-01-14
organic
Germany
1919
BFNLURISJXTH647
BFNLURISJXTH647-len6vujd
2015-01-20 14:09:51+00:00
2015-01-20 14:10:03+00:00
iap
gold7
47.99
4.5
2015-01-10
organic
India
1920
BFNLURISJXTH647
BFNLURISJXTH647-len6vujd
2015-01-20 14:09:51+00:00
2015-01-20 14:14:21+00:00
iap
gold6
23.99
4.5
2015-01-10
organic
India
import pointblank as pbvalidation = ( pb.Validate( data=pb.load_dataset(dataset="game_revenue"), tbl_name="game_revenue", label="Validation with test unit failures available as an extract" ) .col_vals_gt(columns="item_revenue", value=0) # STEP 1: no test unit failures .col_vals_ge(columns="session_duration", value=5) # STEP 2: 14 test unit failures -> extract .interrogate())