EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Determines whether the values are equal. Passing in floating-point values might lead to false negatives. Use px.approxEqual(b1, b2)
to compare floats instead.
True if `b1` is equal to `b2`, False otherwise.
Variable | Type | Description |
---|---|---|
b1 | INT64 / STRING / BOOLEAN / TIME64NS / UINT128 / FLOAT64 | |
b2 | INT64 / STRING / BOOLEAN / TIME64NS / UINT128 / FLOAT64 |
# Implicit call.df.success_http = df.http_status == 200# Explicit call.df.success_http = px.equal(df.http_status, 200)