10#include <Eigen/SparseCore>
33computeCenters(Eigen::VectorXd& x_centers,
const T& x,
const std::string& type)
37 if (type ==
"manual") {
38 if (x_centers.size() != p) {
39 throw std::invalid_argument(
"Invalid dimensions in centers");
42 if (!x_centers.allFinite()) {
43 throw std::invalid_argument(
"Centers must be finite");
46 }
else if (type ==
"mean") {
48 }
else if (type ==
"min") {
50 }
else if (type !=
"none") {
51 throw std::invalid_argument(
"Invalid centering type");
74computeScales(Eigen::VectorXd& x_scales,
const T& x,
const std::string& type)
78 if (type ==
"manual") {
79 if (x_scales.size() != p) {
80 throw std::invalid_argument(
"Invalid dimensions in scales");
82 if (!x_scales.allFinite()) {
83 throw std::invalid_argument(
"Scales must be finite");
85 }
else if (type ==
"sd") {
87 }
else if (type ==
"l1") {
89 }
else if (type ==
"l2") {
91 }
else if (type ==
"max_abs") {
93 }
else if (type ==
"range") {
95 }
else if (type !=
"none") {
96 throw std::invalid_argument(
"Invalid scaling type");
123 Eigen::VectorXd& x_centers,
124 Eigen::VectorXd& x_scales,
125 const std::string& centering_type,
126 const std::string& scaling_type,
127 const bool modify_x);
154 Eigen::VectorXd& x_centers,
155 Eigen::VectorXd& x_scales,
156 const std::string& centering_type,
157 const std::string& scaling_type,
158 const bool modify_x);
180std::tuple<Eigen::VectorXd, Eigen::MatrixXd>
182 const Eigen::VectorXd& beta,
183 const Eigen::VectorXd& x_centers,
184 const Eigen::VectorXd& x_scales,
185 const bool intercept);
Enums to control predictor standardization behavior.
Mathematical support functions for the slope package.
Namespace containing SLOPE regression implementation.
Eigen::VectorXd l1Norms(const T &x)
Computes the L1 (Manhattan) norms for each column of a matrix.
Eigen::VectorXd maxAbs(const Eigen::SparseMatrix< double > &x)
Computes the maximum absolute value for each column of a matrix.
Eigen::VectorXd means(const Eigen::SparseMatrix< double > &x)
Computes the arithmetic mean for each column of a sparse matrix.
JitNormalization
Enums to control predictor standardization behavior.
Eigen::VectorXd stdDevs(const Eigen::SparseMatrix< double > &x)
Computes the standard deviation for each column of a matrix.
JitNormalization normalize(Eigen::MatrixXd &x, Eigen::VectorXd &x_centers, Eigen::VectorXd &x_scales, const std::string ¢ering_type, const std::string &scaling_type, const bool modify_x)
Eigen::VectorXd ranges(const Eigen::SparseMatrix< double > &x)
Computes the range (max - min) for each column of a matrix.
void computeScales(Eigen::VectorXd &x_scales, const T &x, const std::string &type)
Eigen::VectorXd l2Norms(const Eigen::SparseMatrix< double > &x)
Computes the L2 (Euclidean) norms for each column of a sparse matrix.
Eigen::VectorXd mins(const Eigen::SparseMatrix< double > &x)
Computes the minimum value for each column of a sparse matrix.
void computeCenters(Eigen::VectorXd &x_centers, const T &x, const std::string &type)
std::tuple< Eigen::VectorXd, Eigen::MatrixXd > rescaleCoefficients(const Eigen::VectorXd &beta0, const Eigen::VectorXd &beta, const Eigen::VectorXd &x_centers, const Eigen::VectorXd &x_scales, const bool intercept)
Rescales the coefficients using the given parameters.