[mlpack-git] [mlpack/mlpack] Descriptive Statistics command-line program (#742)

Keon Kim notifications at github.com
Sat Aug 6 00:52:16 EDT 2016


> +    double rowMean = arma::mean(row);
> +    double rowStd = arma::stddev(row, population);
> +
> +    // Print statistics of the given dimension.
> +    Log::Info << boost::format(numberFormat)
> +        % dimension
> +        % arma::var(row, population)
> +        % rowMean
> +        % rowStd
> +        % arma::median(row)
> +        % rowMin
> +        % rowMax
> +        % (rowMax - rowMin) // range
> +        % Skewness(row, rowStd, rowMean, population)
> +        % Kurtosis(row, rowStd, rowMean, population)
> +        % StandardError(row, rowStd) << endl;

@rcurtin sorry for late response.
I tried with `std::setw` first, but I found that `std::setprecision` is not compatible with Log::Info.
So the `boost::format` alternative was chosen.  It is not fast, but I thought this would not cause performance issue in this case.

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/pull/742/files/27ac82e876c3d68637d9e72d28bf0dadbc229ace#r73780890
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160805/ab524ad7/attachment.html>


More information about the mlpack-git mailing list