Skip to content

Commit 7aeaebf

Browse files
committed
Small corrections in README
1 parent 50ddf1a commit 7aeaebf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
[![Codecov](https://codecov.io/gh/oschulz/ArraysOfArrays.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/oschulz/ArraysOfArrays.jl)
66

77

8-
A Julia package for efficient storage of nested arrays.
8+
A Julia package for efficient storage and handling of nested arrays.
99

1010
ArraysOfArrays provides two different types of nested arrays: `ArrayOfSimilarArrays` and `VectorOfArrays`.
1111

1212

1313
## ArrayOfSimilarArrays
1414

15-
An `ArrayOfSimilarArrays` offers duality of viewing the same data as both a flat multi-dimensional array and as an array of equally-sized arrays.
15+
An `ArrayOfSimilarArrays` offers duality of viewing the same data as both a flat multi-dimensional array and as an array of equally-sized arrays:
1616

1717
```julia
1818
A_flat = rand(2,3,4,5,6)
@@ -72,7 +72,8 @@ There is a full duality between the nested and the flat view of the data. `A_fla
7272

7373
`AbstractVectorOfSimilarArrays` supports the functions `sum`, `mean` and `var`, `AbstractVectorOfSimilarVectors` additionally support `cov` and `cor`.
7474

75-
Methods for these function are defined both without and with weights (via `StatsBase.AbstractWeights`). Because of this, `ArraysOfArrays` currently requires `StatsBase`. It's possible that this requirement can be dropped in the future, though (see JuliaLang/julia#29974).
75+
Methods for these function are defined both without and with weights (via `StatsBase.AbstractWeights`). Because of this, `ArraysOfArrays` currently requires `StatsBase`. It's possible that this requirement can be dropped in the future, though (see
76+
[Julia issue #29974](https://github.com/JuliaLang/julia/issues/29974)).
7677

7778
## VectorOfArrays
7879

0 commit comments

Comments
 (0)