Skip to content

Commit 60e15ab

Browse files
authored
Set up to release CLI (#50)
1 parent 2bcafe1 commit 60e15ab

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

elinor-cli/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ authors = ["Shunsuke Kanda (kampersanda) <shnsk.knd@gmail.com>"]
66
description = "Command line tools for elinor."
77
license = "MIT OR Apache-2.0"
88
readme = "README.md"
9-
documentation = "https://docs.rs/elinor"
10-
repository = "https://github.com/kampersanda/elinor"
11-
homepage = "https://github.com/kampersanda/elinor"
12-
keywords = ["information", "retrieval", "evaluation"]
9+
repository = "https://github.com/kampersanda/elinor/tree/main/elinor-cli"
10+
keywords = ["information", "retrieval", "evaluation", "cli"]
1311
categories = ["science"]
1412
rust-version = "1.65.0"
1513

@@ -22,6 +20,7 @@ prettytable-rs = "0.10.0"
2220
serde_json = "1.0.128"
2321

2422
[dependencies.elinor]
23+
version = "0.3.1"
2524
path = ".."
2625
features = ["serde"]
2726
default-features = false

elinor-cli/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@ The output will be:
198198
+-------------+---------+
199199
```
200200

201+
See the following documentation for more details about the statistical tests:
202+
203+
- [Student's t-test](https://docs.rs/elinor/latest/elinor/statistical_tests/student_t_test/struct.StudentTTest.html)
204+
- [Bootstrap test](https://docs.rs/elinor/latest/elinor/statistical_tests/bootstrap_test/struct.BootstrapTest.html)
205+
- [Fisher's randomized test](https://docs.rs/elinor/latest/elinor/statistical_tests/randomized_tukey_hsd_test/struct.RandomizedTukeyHsdTest.html)
206+
201207
### Example usage: Comparing three systems
202208

203209
If you want to compare the metrics of three (or more) systems, run:
@@ -267,6 +273,12 @@ The output will be:
267273
(The statistics for the other metrics will be shown as well.)
268274
```
269275

276+
See the following documentation for more details about the statistical tests:
277+
278+
- [Two-way ANOVA without replication](https://docs.rs/elinor/latest/elinor/statistical_tests/two_way_anova_without_replication/struct.TwoWayAnovaWithoutReplication.html)
279+
- [Tukey HSD test](https://docs.rs/elinor/latest/elinor/statistical_tests/tukey_hsd_test/struct.TukeyHsdTest.html)
280+
- [Randomized Tukey HSD test](https://docs.rs/elinor/latest/elinor/statistical_tests/randomized_tukey_hsd_test/struct.RandomizedTukeyHsdTest.html)
281+
270282
### Example usage: Printing the tables in a tab-separated format
271283

272284
If you set `--print-mode raw`, the tables will be printed in a tab-separated format,

0 commit comments

Comments
 (0)