slope 0.29.0
Loading...
Searching...
No Matches
normalize.h File Reference

Functions to normalize the design matrix and rescale coefficients in case the design was normalized. More...

#include "jit_normalization.h"
#include "math.h"
#include <Eigen/SparseCore>
Include dependency graph for normalize.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  slope
 Namespace containing SLOPE regression implementation.
 

Functions

template<typename T >
void slope::computeCenters (Eigen::VectorXd &x_centers, const T &x, const std::string &type)
 
template<typename T >
void slope::computeScales (Eigen::VectorXd &x_scales, const T &x, const std::string &type)
 
JitNormalization slope::normalize (Eigen::MatrixXd &x, Eigen::VectorXd &x_centers, Eigen::VectorXd &x_scales, const std::string &centering_type, const std::string &scaling_type, const bool modify_x)
 
JitNormalization slope::normalize (Eigen::SparseMatrix< double > &x, Eigen::VectorXd &x_centers, Eigen::VectorXd &x_scales, const std::string &centering_type, const std::string &scaling_type, const bool)
 
std::tuple< Eigen::VectorXd, Eigen::MatrixXd > slope::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.
 

Detailed Description

Functions to normalize the design matrix and rescale coefficients in case the design was normalized.

Definition in file normalize.h.