Georg Willer
commited on
Commit
·
84a4fbd
1
Parent(s):
2c50423
Fix readme headings for 2 last examples
Browse files
README.md
CHANGED
@@ -175,7 +175,7 @@ The pipeline recognizes the column separator in the .csv file automatically.
|
|
175 |
|
176 |
When using a .txt file, the pipeline only supports the column separator '\t'. Make sure your data file matches this requirement before providing it to the pipeline.
|
177 |
|
178 |
-
|
179 |
The following example provides a .csv file to the pipeline and lets it calculate the HRV-Features on the first 10 minutes of the data.
|
180 |
```python
|
181 |
file_path = "./Example_data/RRIntervalExample.csv"
|
@@ -183,7 +183,7 @@ result = rpeak2hrv_pipeline(inputs=file_path, windowing_method="first_interval",
|
|
183 |
result.head()
|
184 |
```
|
185 |
|
186 |
-
|
187 |
The same can be done using a .txt file.
|
188 |
```python
|
189 |
file_path = "./Example_data/RRIntervalExample.txt"
|
|
|
175 |
|
176 |
When using a .txt file, the pipeline only supports the column separator '\t'. Make sure your data file matches this requirement before providing it to the pipeline.
|
177 |
|
178 |
+
#### Example: Provide .csv file to pipeline
|
179 |
The following example provides a .csv file to the pipeline and lets it calculate the HRV-Features on the first 10 minutes of the data.
|
180 |
```python
|
181 |
file_path = "./Example_data/RRIntervalExample.csv"
|
|
|
183 |
result.head()
|
184 |
```
|
185 |
|
186 |
+
#### Example: Provide .txt file to pipeline
|
187 |
The same can be done using a .txt file.
|
188 |
```python
|
189 |
file_path = "./Example_data/RRIntervalExample.txt"
|