precision
Description
API
precision([initialState={truePositives: 0, falsePositives: 0}])Since
Parameters
Options
Returns
Examples
Last updated
precision([initialState={truePositives: 0, falsePositives: 0}])Last updated
import { from } from 'rxjs';
import { precision } from '@buccaneer/rxjs-stats';
const items = [
[0, 1], // [trueLabel, prediction]
[0, 1],
[0, 1],
[0, 0],
[0, 0],
[1, 1],
[1, 1],
[1, 1],
[1, 1],
[1, 0],
];
const precision$ = from(items).pipe(
precision()
);
precision$.subscribe(console.log);
// Output
// 0
// 0
// 0
// 0
// 0
// 0.25
// 0.40
// 0.50
// 0.5714285714
// 0.5714285714