Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmcclintock/covariance_diagnostic
A tool to return some useful information about an input covariance matrix
https://github.com/tmcclintock/covariance_diagnostic
Last synced: 26 days ago
JSON representation
A tool to return some useful information about an input covariance matrix
- Host: GitHub
- URL: https://github.com/tmcclintock/covariance_diagnostic
- Owner: tmcclintock
- License: mit
- Created: 2019-01-26T13:15:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-26T18:01:53.000Z (almost 6 years ago)
- Last Synced: 2024-10-27T11:08:33.422Z (2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# covariance_diagnostic
A tool to return some useful information about a covariance matrix. When encountering a covariance matrix there are some properties that are not immediately apparent. This includes whether it is positive definite, what the eigenvalues are, and how many degrees of freedom it has.
This small tool computes all of those things and presents them in a useful way.
## Usage
```python
import covariance_diagnostic#Assume a covariance matrix C came from somewhere
C = ...diagnostic = covariance_diagnostic.covdiagnostic(C)
print(diagnostic) #To see all properties
```