edf2csv 0.5.126 → 0.5.127
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.5.127
|
|
7
|
+
|
|
8
|
+
### Fixed: the chunked-reader recipe printed a row count and a peak from nowhere
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
print(rows, peak) # 7372800 122.161
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
The file it reads is `sleep_csv/signals_100hz.csv`, and neither number is that file's.
|
|
15
|
+
7,372,800 rows is eight hours at 256 Hz; eight hours at 100 Hz is 2,880,000, which the same
|
|
16
|
+
page states eighteen lines further down while explaining what `merge_asof` would do to it. And
|
|
17
|
+
122.161 is not the peak of anything — that column reaches 250, its declared physical maximum.
|
|
18
|
+
|
|
19
|
+
A recipe that prints a result is a claim about a file. This one is now converted and read down
|
|
20
|
+
by a test, the way the snippet reads it, and both numbers are checked against what comes out.
|
|
21
|
+
|
|
6
22
|
## 0.5.126
|
|
7
23
|
|
|
8
24
|
### Fixed: the metadata.json the page explains was a different recording's
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.127",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|