Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-02-19 17:04:52 +01:00 committed by GitHub
parent 0bac4bf40e
commit f9a2618e55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,6 +57,17 @@ Spectral Coherence
## 6 ## 6
{: .topic-optional}
Don't normalize the time series!
i.e. don't do something like this:
```python
data -= data.mean(axis=1, keepdims=True)
data /= data.std(axis=1, keepdims=True)
```
Otherwise you will not classify anything.
![image12.png](image12.png) ![image12.png](image12.png)
Scaled by divison max() for every individual frequency band (Bad times happen): Scaled by divison max() for every individual frequency band (Bad times happen):
@ -65,6 +76,17 @@ Scaled by divison max() for every individual frequency band (Bad times happen):
## 7 ## 7
{: .topic-optional}
Don't normalize the time series!
i.e. don't do something like this:
```python
data -= data.mean(axis=1, keepdims=True)
data /= data.std(axis=1, keepdims=True)
```
Otherwise you will not classify anything.
![image14.png](image14.png) ![image14.png](image14.png)