slope 0.29.0
Loading...
Searching...
No Matches
ols.h
Go to the documentation of this file.
1
9#pragma once
10
11#include <Eigen/Dense>
12#include <Eigen/SparseCore>
13#include <utility>
14
26std::pair<double, Eigen::VectorXd>
27fitOls(const Eigen::MatrixXd& X,
28 const Eigen::VectorXd& y,
29 bool fit_intercept = true);
30
42std::pair<double, Eigen::VectorXd>
43fitOls(const Eigen::SparseMatrix<double>& X,
44 const Eigen::VectorXd& y,
45 bool fit_intercept = true);
std::pair< double, Eigen::VectorXd > fitOls(const Eigen::MatrixXd &X, const Eigen::VectorXd &y, bool fit_intercept=true)
Fits an OLS regression model using dense matrices.
Definition ols.cpp:7