Performs linear regression with the least squares method to find a function of best fit for a set of sample data.
1. Install a C++ compiler, Git, Meson, GNU MP, Eigen3, and cpp_result.
sudo pacman -S base-devel git meson gmp eigenFollow the instructions here to install cpp_result.
git clone https://github.com/cshmookler/linear_regressor.git
cd linear_regressor
meson setup build
cd build
ninja
meson install
- Create a structure for representing a linear equation.
- Perform linear regression using the least squares method on any linear equation.
- Write examples for using the linear regressor.
- Write tests for all methods.