WeightedLowess
A C++ library for LOWESS with various weighting schemes
|
Results of the LOWESS smoother. More...
#include <compute.hpp>
Public Member Functions | |
Results (const std::size_t n) | |
Public Attributes | |
std::vector< Data_ > | fitted |
std::vector< Data_ > | robust_weights |
Results of the LOWESS smoother.
Data_ | Floating-point type of the data. |
Instances of this class are usually created by compute()
.
|
inline |
n | Number of points. |
std::vector<Data_> WeightedLowess::Results< Data_ >::fitted |
Fitted values from the LOWESS smoother.
std::vector<Data_> WeightedLowess::Results< Data_ >::robust_weights |
Robustness weight for each point.