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

Tham notifications at github.com
Fri Jul 29 05:50:13 EDT 2016


> +
> +      // Print statistics of the row i.
> +      Log::Info << boost::format(numberFormat)
> +          % i
> +          % 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;
> +    }
> +  }

We can reduce some duplicate codes

```
auto printStatResults = [&](int dim)
{
    arma::rowvec row = data.row(dim);
    double rowMax = arma::max(row);
    double rowMin = arma::min(row);
    double rowMean = arma::mean(row);
    double rowStd = arma::stddev(row, population);

    // Print statistics of the given dimension.
    Log::Info << boost::format(numberFormat)
        % dim
        % 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;
};

if(CLI::HasParam("dimension")){
    printStatResults(dimension);
}else{
    for(size_t i = 0; i < data.n_rows; ++i){
	    printStatResults(i);
	}
}
```

---
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#r72768144
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160729/6422ad2d/attachment.html>


More information about the mlpack-git mailing list