From 7986e273b8f5fe292b85df5f418b5ac0cb2193be Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 22 Jan 2023 17:55:23 +0100 Subject: [PATCH] Initial commit. Provide a project title page --- README | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..1f34732 --- /dev/null +++ b/README @@ -0,0 +1,57 @@ + + +*ranknauto* -- Rank N' Auto, automatic normalized ranking + +Quantify a ranked ordered from statistical distributions. + +Decide an available distribution, e.g. the log normal, and apply the +quantiles from that on a ranked priority list. The output will be the +priority in percentages per item in the list. + +Read more: + + * Wikipedia, [Ranking](https://en.wikipedia.org/wiki/Ranking) + * Wikipedia, [Quantile](https://en.wikipedia.org/wiki/Quantile) + + +Installation +============ + +The implementation language is Rust. Configuration made with +Cargo. For default compilation, installation and removal run GNU Make: + +``` +make +make install +make uninstall +``` + +Write to the author in order to request binaries for your platform. No +warranties of a response. + + +Copying +======= + +Rank N' Auto, automatic normalized ranking. + +Copyright (C) 2023 Gustav Eek + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Unless explicitly stated otherwise, any contribution intentionally +submitted for inclusion is released under the GNU GPL v3 or later, +without any additional terms or conditions. + -- 2.39.2