templat<typename T, typename I = unsigned long, typename = typename std::enable_if<std::is_arithmetic<T>::value, T>::type>
struct CorrVisitor;
|
This functor class calculates the correlation of two given columns.
explicit CorrVisitor (bool bias = true);
See this document and dataframe_tester.cc for examples.
|
T: Column data type. T must be an arithmetic-enabled type
I: Index type.
|