Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ETL/ETL.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <iostream>
#include <fstream>
#include <eigen3/Eigen/Dense>
#include <vector>

class ETL
{
Expand All @@ -29,4 +30,4 @@ class ETL
void EigentoFile(Eigen::MatrixXd data, std::string filename);
};

#endif
#endif
3 changes: 2 additions & 1 deletion LinearRegression/LinearRegression.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define LinearRegression_h

#include <eigen3/Eigen/Dense>
#include <vector>

class LinearRegression
{
Expand All @@ -15,4 +16,4 @@ class LinearRegression
float RSquared(Eigen::MatrixXd y, Eigen::MatrixXd y_hat);
};

#endif
#endif