Crates.io | pav_regression |
lib.rs | pav_regression |
version | 0.5.2 |
source | src |
created_at | 2021-02-24 21:26:36.818577 |
updated_at | 2024-09-21 21:54:04.308173 |
description | The pair adjacent violators algorithm for isotonic regression |
homepage | https://github.com/sanity/pav.rs |
repository | https://github.com/sanity/pav.rs |
max_upload_size | |
id | 360127 |
size | 34,022 |
An implementation of the Pair Adjacent Violators algorithm for isotonic regression. Note this algorithm is also known as "Pool Adjacent Violators".
Imagine you have two variables, x and y, and you don't know the relationship between them, but you know that if x increases then y will increase, and if x decreases then y will decrease. Alternatively it may be the opposite, if x increases then y decreases, and if x decreases then y increases.
Examples of such isotonic or monotonic relationships include:
These are all examples of an isotonic relationship between two variables, where the relationship is likely to be more complex than linear.
So we know the relationship between x and y is isotonic, and let's also say that we've been able to collect data about actual x and y values that occur in practice.
What we'd really like to be able to do is estimate, for any given x, what y will be, or alternatively for any given y, what x would be required.
But of course real-world data is noisy, and is unlikely to be strictly isotonic, so we want something that allows us to feed in this raw noisy data, figure out the actual relationship between x and y, and then use this to allow us to predict y given x, or to predict what value of x will give us a particular value of y. This is the purpose of the pair-adjacent-violators algorithm.
Using the examples I provide above:
If you have an hour to spare, and are interested in learning more about how online advertising works - you should check out this lecture that I gave in 2015 where I explain how we were able to use pair adjacent violators to solve some fun problems.
Here is the relationship that PAV extracts from some very noisy input data where there is an increasing relationship between x and y:
use pav_regression::pav::{IsotonicRegression, Point};
// ..
let points = &[
Point::new(0.0, 1.0),
Point::new(1.0, 2.0),
Point::new(2.0, 1.5),
];
let regression = IsotonicRegression::new_ascending(points);
assert_eq!(
regression.interpolate(1.5), 1.75
);
For more examples please see the unit tests.
Released under the LGPL version 3 by Ian Clarke.