1.0.3 • Published 8 years ago
lobf v1.0.3
lobf
Find the line of best fit given a set of points

Example Usage
const lobf = require('lobf');
const myLineOfBestFit = lobf([
	// [x, y]
	[1.5, 3],
	[1.5, 2],
	[2, 1.5]
]);
console.log(myLineOfBestFit);
// Logs {
//	'slope' : -2,
//	'intercept' : 5.5
// }API
module.exports is a function as follows:
- function (points: [x, y][])- calculate the line of best fit for the given points. -- points: [x, y][]- an array of arrays with element- 0as the- xcoordinate and element- 1as the- ycoordinate. - returns -- { slope, intercept }: -- slope: Number- the slope of the line, or the- min- y = mx + b. -- intercept: Number- the intercept of the line, or the- bin- y = mx + b.