JuliaSIMD / JuliaSIMD/VectorizedStatistics.jl
Correlation between columns of two matrices?
Open
- Dominant language
- Julia
- Stars
- 46
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
`vcor` doesn't allow for correlating matrices, while `cor` does:
```julia
using VectorizedStatistics
using Statistics
a = rand(5, 15)
b = rand(5, 10)
c = cor(a, b) # Works
vc = vcor(a, b) # Fails
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.