This yet another C++11 fix, fixing clang warning: Result: WARN Found the following significant warnings: znorm.cpp:44:59: warning: 'bind2nd, double>' is deprecated [-Wdeprecated-declarations]
The old code: std::transform(ts.begin(), ts.end(), diff.begin(), std::bind2nd(std::minus(), mean));
The new code: for(unsigned i=0; i<ts.size(); i++) diff[i] = ts[i]-mean;
All over source code in order to fix any thrown warnings.
There were no ERRORs or WARNINGs
stats::as.dist
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.