EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Determines whether the values are not equal. Passing in floating-point values might lead to false positives. Use not px.approxEqual(b1, b2)
to compare floats instead.
True if `b1` is not 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.failed_http = df.http_status != 200# Explicit call.df.failed_http = px.notEqual(df.http_status, 200)