15 lines
230 B
Text
15 lines
230 B
Text
"""
|
|
bar(x[, y])
|
|
|
|
Compute the Bar index between `x` and `y`. If `y` is missing, compute
|
|
the Bar index between all pairs of columns of `x`.
|
|
|
|
|
|
|
|
# Examples
|
|
```julia-repl
|
|
julia> bar([1, 2], [1, 2])
|
|
1
|
|
```
|
|
"""
|
|
function bar(x, y) ...
|