Skip to content

Commit b874343

Browse files
authored
Merge pull request #74 from PySATL/future/cli
feat: add start example
2 parents dd338ae + 1a73261 commit b874343

File tree

1 file changed

+53
-1
lines changed

1 file changed

+53
-1
lines changed

README.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# statistic-test
1+
# statistic-test
22

33
[![Freqtrade CI](https://github.com/PySATL/pysatl-experiment/workflows/PySATL%20CI/badge.svg)](https://github.com/PySATL/pysatl-experiment/actions)
44
[![Coverage Status](https://coveralls.io/repos/github/PySATL/pysatl-experiment/badge.svg?branch=main)](https://coveralls.io/github/PySATL/pysatl-experiment?branch=main)
@@ -116,3 +116,55 @@ Starting manually:
116116
```shell
117117
poetry run pre-commit run --all-files --color always --verbose --show-diff-on-failure
118118
```
119+
120+
### Quick Start example
121+
122+
1. Creating of experiment.
123+
124+
```shell
125+
poetry run experiment create NAME
126+
```
127+
128+
2. Set the experiment type value. Experiment types: critical_value, power, time_complexity.
129+
130+
```shell
131+
poetry run experiment configure NAME experiment-type critical_value
132+
```
133+
134+
3. Setting the hypothesis value. Experiment types: normal, exponential, weibull.
135+
136+
```shell
137+
poetry run experiment configure NAME hypothesis normal
138+
```
139+
140+
4. Set the sample size value. (min = 10)
141+
142+
```shell
143+
run experiment configure NAME sample-sizes 23
144+
```
145+
146+
5. Setting the value of the Monte Carlo number. (min = 100)
147+
148+
```shell
149+
poetry run experiment configure NAME monte-carlo-count 154
150+
```
151+
152+
6. Setting the significance levels.
153+
154+
```shell
155+
poetry run experiment configure NAME significance-levels 0.05 0.01
156+
```
157+
158+
7. Setting the file name for connecting the storage.
159+
160+
```shell
161+
experiment configure NAME storage-connection FILENAME
162+
```
163+
164+
8. Running the experiment.
165+
166+
```shell
167+
poetry run experiment build-and-run NAME
168+
```
169+
170+
Parameters experiment-type, hypothesis, sample-sizes, monte-carlo-count, significance-levels, storage-connection required to set values.

0 commit comments

Comments
 (0)