Skip to content
Snippets Groups Projects
Commit 82e9a641 authored by Jakub Janák's avatar Jakub Janák
Browse files

I have updated readme and removed incomplete graphs from instances

parent 15f60abb
No related branches found
No related tags found
No related merge requests found
...@@ -221,9 +221,8 @@ The **run_tests** executable validates the core components of the application: ...@@ -221,9 +221,8 @@ The **run_tests** executable validates the core components of the application:
### Data Analysis ### Data Analysis
The `stats` executable generates `.csv` files containing statistics, which are saved in the `/data_analysis` folder. The `stats` executable generates `.csv` files containing statistics, which are saved in the `/files/data` folder.
A Python program, written in a Jupyter notebook, loads the data from these `.csv` files, A Python program in the `/data_analysis` folder loads this data, generates graphs, and saves them in `.jpg` format.
generates graphs, and saves them in `.jpg` format.
This automated data analysis process enables the handling of hundreds of samples efficiently. This automated data analysis process enables the handling of hundreds of samples efficiently.
## How to Use TSS ## How to Use TSS
......
digraph G {
A;
B;
C;
D
A -> B [label="1" weight="1"];
B -> C [label="1" weight="1"];
C -> A [label="1" weight="1"]
}
\ No newline at end of file
digraph G {
A;
B;
C;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment